summaryrefslogtreecommitdiff
path: root/src/unistd/getegid.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/unistd/getegid.c')
-rw-r--r--src/unistd/getegid.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/unistd/getegid.c b/src/unistd/getegid.c
index da8a372f..0c39a84a 100644
--- a/src/unistd/getegid.c
+++ b/src/unistd/getegid.c
@@ -1,11 +1,11 @@
#include "stddef.h"
#include "sys/types.h"
#include <unistd.h>
-#include "nonstd/syscall.h"
+#include "../_syscall.h"
gid_t getegid(void)
{
- SYSCALL("getegid", gid_t, -1, 0, 0, 0, 0, 0, 0);
+ SYSCALL(getegid, gid_t, -1, 0, 0, 0, 0, 0, 0);
}
/*
POSIX(1)