posix_spawn: honor POSIX_SPAWN_SETSIGDEF flag
[oweals/musl.git] / src / time / times.c
index e9b5a8233489d3ece2eaac069db383234d073984..9c50144f6316946397d3d9b1235838d134e86e05 100644 (file)
@@ -3,5 +3,5 @@
 
 clock_t times(struct tms *tms)
 {
-       return syscall1(__NR_times, (long)&tms);
+       return syscall(SYS_times, tms);
 }