consistency: change all remaining syscalls to use SYS_ rather than __NR_ prefix
[musl] / src / time / gettimeofday.c
index 521b4d5..2436e49 100644 (file)
@@ -3,6 +3,6 @@
 
 int gettimeofday(struct timeval *tv, void *tz)
 {
-       __syscall(__NR_gettimeofday, tv, 0);
+       __syscall(SYS_gettimeofday, tv, 0);
        return 0;
 }