global cleanup to use the new syscall interface
[musl] / src / time / times.c
index d63cd20..9c50144 100644 (file)
@@ -3,5 +3,5 @@
 
 clock_t times(struct tms *tms)
 {
-       return syscall1(__NR_times, (long)tms);
+       return syscall(SYS_times, tms);
 }