ack/plat/linux386/libsys/getpid.c

15 lines
185 B
C
Raw Normal View History

2007-04-21 23:02:11 +00:00
/* $Source$
* $State$
* $Revision$
*/
#include <stdlib.h>
#include <errno.h>
#include <unistd.h>
#include "libsys.h"
pid_t getpid(void)
{
return _syscall(__NR_getpid, 0, 0, 0);
}