omit errno update path for syscalls that cannot fail
[musl] / src / unistd / geteuid.c
index 187ba0a..88f2cd5 100644 (file)
@@ -3,5 +3,5 @@
 
 uid_t geteuid(void)
 {
-       return syscall(SYS_geteuid);
+       return __syscall(SYS_geteuid);
 }