forked from Imagelibrary/rtems
substantial upgrade of newlibc.c occurred. Now the user extension data area is used rather than notepads and as many routines as possible were split into other files further reducing the minimum footprint of an RTEMS executable.
15 lines
181 B
C
15 lines
181 B
C
/*
|
|
* Some C Libraries reference this routine since they think getpid is
|
|
* a real system call.
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#include <unistd.h>
|
|
|
|
pid_t __getpid(void)
|
|
{
|
|
return getpid();
|
|
}
|
|
|