mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-09-02 00:49:46 +08:00
18 lines
226 B
C
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();
|
|
}
|