4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-16 03:19:54 +08:00
2007-09-07 00:45:55 +00:00

15 lines
207 B
C

/* default reentrant pointer when multithread enabled */
#include <_ansi.h>
#include <reent.h>
#ifdef __getreent
#undef __getreent
#endif
struct _reent *
_DEFUN_VOID(__getreent)
{
return _impure_ptr;
}