• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include <unistd.h>
2 #include "syscall.h"
3 
getppid(void)4 pid_t getppid(void)
5 {
6 	return __syscall(SYS_getppid);
7 }
8