amiga-libnix3/extra/getppid.c

7 lines
72 B
C

#include <unistd.h>
pid_t getppid(void)
{
return 1; /* init ;-) */
}