musl-tcc/src/unistd/getppid.c

8 lines
98 B
C
Raw Normal View History

2022-03-20 04:48:53 -04:00
#include <unistd.h>
#include "syscall.h"
pid_t getppid(void)
{
return __syscall(SYS_getppid);
}