diff options
Diffstat (limited to 'src/unistd/getppid.c')
| -rw-r--r-- | src/unistd/getppid.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/unistd/getppid.c b/src/unistd/getppid.c index 2fc880a2..642501f0 100644 --- a/src/unistd/getppid.c +++ b/src/unistd/getppid.c @@ -1,11 +1,11 @@ #include "stddef.h" #include "sys/types.h" #include <unistd.h> -#include "nonstd/syscall.h" +#include "../_syscall.h" pid_t getppid(void) { - SYSCALL("getppid", pid_t, -1, 0, 0, 0, 0, 0, 0); + SYSCALL(getppid, pid_t, -1, 0, 0, 0, 0, 0, 0); } /* POSIX(1) |
