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.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/unistd/getegid.c b/src/unistd/getegid.c
new file mode 100644
index 00000000..0e626b75
--- /dev/null
+++ b/src/unistd/getegid.c
@@ -0,0 +1,7 @@
+#include <unistd.h>
+#include "syscall.h"
+
+gid_t getegid(void)
+{
+ return syscall0(__NR_getegid32);
+}