mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-30 19:53:46 +00:00
13 lines
225 B
C
13 lines
225 B
C
|
/* default function used by _REENT when not using multithreading */
|
||
|
|
||
|
#include <reent.h>
|
||
|
#include <machine/weakalias.h>
|
||
|
|
||
|
struct _reent *
|
||
|
__libc_getreent (void)
|
||
|
{
|
||
|
return _impure_ptr;
|
||
|
}
|
||
|
weak_alias(__libc_getreent,__getreent)
|
||
|
|