source: trunk/libs/newlib/src/newlib/libc/sys/linux/getreent.c

Last change on this file was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 225 bytes
Line 
1/* default function used by _REENT when not using multithreading */
2
3#include <reent.h>
4#include <machine/weakalias.h>
5
6struct _reent *
7__libc_getreent (void)
8{
9  return _impure_ptr;
10}
11weak_alias(__libc_getreent,__getreent)
12
Note: See TracBrowser for help on using the repository browser.