musl-tcc/src/unistd/getppid.c

8 lines
98 B
C

#include <unistd.h>
#include "syscall.h"
pid_t getppid(void)
{
return __syscall(SYS_getppid);
}