omit errno update path for syscalls that cannot fail
[musl] / src / unistd / getegid.c
index 76038f6..6287490 100644 (file)
@@ -3,5 +3,5 @@
 
 gid_t getegid(void)
 {
 
 gid_t getegid(void)
 {
-       return syscall(SYS_getegid);
+       return __syscall(SYS_getegid);
 }
 }