fix the type of CLOCKS_PER_SEC to match new clock_t type
[musl] / src / linux / utimes.c
index 99a3b2b..70c0695 100644 (file)
@@ -1,13 +1,7 @@
 #include <sys/time.h>
-#define SYSCALL_STANDALONE
 #include "syscall.h"
 
 int utimes(const char *path, const struct timeval times[2])
 {
-       long ktimes[2];
-       if (times) {
-               ktimes[0] = times[0].tv_sec;
-               ktimes[1] = times[1].tv_sec;
-       }
-       return syscall2(__NR_utime, (long)path, times ? (long)ktimes : 0);
+       return syscall(SYS_utimes, path, times);
 }