remove __STDC_LIMIT_MACROS and __STDC_CONSTANT_MACROS checks in stdint.h
[musl] / src / time / times.c
index e9b5a82..9c50144 100644 (file)
@@ -3,5 +3,5 @@
 
 clock_t times(struct tms *tms)
 {
-       return syscall1(__NR_times, (long)&tms);
+       return syscall(SYS_times, tms);
 }