Files
rtems/cpukit/libcsupport/src/__getpid.c
T

18 lines
226 B
C

/*
* Some C Libraries reference this routine since they think getpid is
* a real system call.
*
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <unistd.h>
pid_t __getpid(void)
{
return getpid();
}