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