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