blob: 05cade53b689226bff4a6726eafe2e97a5535b01 [file] [log] [blame]
Rich Felker0b44a032011-02-12 00:22:29 -05001#include <unistd.h>
2#include "syscall.h"
3
4pid_t getppid(void)
5{
Rich Felkerd878dce2011-04-21 21:52:41 -04006 return __syscall(SYS_getppid);
Rich Felker0b44a032011-02-12 00:22:29 -05007}