* libc/reent/getreent.c: Allow for case where __getreent is
defined as a macro.
This commit is contained in:
parent
6e08b2f7f8
commit
345c159562
|
@ -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>
|
2007-09-06 Jeff Johnston <jjohnstn@redhat.com>
|
||||||
|
|
||||||
* libc/include/math.h (_M_LOG2E): New log2 of e macro.
|
* libc/include/math.h (_M_LOG2E): New log2 of e macro.
|
||||||
|
|
|
@ -3,6 +3,10 @@
|
||||||
#include <_ansi.h>
|
#include <_ansi.h>
|
||||||
#include <reent.h>
|
#include <reent.h>
|
||||||
|
|
||||||
|
#ifdef __getreent
|
||||||
|
#undef __getreent
|
||||||
|
#endif
|
||||||
|
|
||||||
struct _reent *
|
struct _reent *
|
||||||
_DEFUN_VOID(__getreent)
|
_DEFUN_VOID(__getreent)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue