global cleanup to use the new syscall interface
[musl] / src / stat / utimensat.c
index b9b02ad..929698b 100644 (file)
@@ -3,5 +3,5 @@
 
 int utimensat(int fd, const char *path, const struct timespec times[2], int flags)
 {
-       return syscall4(__NR_utimensat, fd, (long)path, (long)times, flags);
+       return syscall(SYS_utimensat, fd, path, times, flags);
 }