diff options
Diffstat (limited to 'src/unistd/setgid.c')
| -rw-r--r-- | src/unistd/setgid.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/unistd/setgid.c b/src/unistd/setgid.c index 79f9695b..30aa5223 100644 --- a/src/unistd/setgid.c +++ b/src/unistd/setgid.c @@ -1,11 +1,11 @@ #include "stddef.h" #include "sys/types.h" #include <unistd.h> -#include "nonstd/syscall.h" +#include "../_syscall.h" int setgid(gid_t gid) { - SYSCALL("setgid", int, -1, gid, 0, 0, 0, 0, 0); + SYSCALL(setgid, int, -1, gid, 0, 0, 0, 0, 0); } /* POSIX(1) |
