* libc/reent/getreent.c: Allow for case where __getreent is

defined as a macro.
This commit is contained in:
Brian Dessent 2007-09-07 00:45:55 +00:00
parent 6e08b2f7f8
commit 345c159562
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2007-09-06 Brian Dessent <brian@dessent.net>
* libc/reent/getreent.c: Allow for case where __getreent is
defined as a macro.
2007-09-06 Jeff Johnston <jjohnstn@redhat.com>
* libc/include/math.h (_M_LOG2E): New log2 of e macro.

View File

@ -3,6 +3,10 @@
#include <_ansi.h>
#include <reent.h>
#ifdef __getreent
#undef __getreent
#endif
struct _reent *
_DEFUN_VOID(__getreent)
{