ack/plat/pc86/libsys/getpid.c

14 lines
136 B
C
Raw Normal View History

/* $Source$
* $State$
* $Revision$
*/
#include <stdlib.h>
#include <errno.h>
#include <unistd.h>
pid_t getpid(void)
{
return 0;
}