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