update mips cancellation-point syscall asm with 7-arg and r25 fixes
[oweals/musl.git] / src / linux / utimes.c
1 #include <sys/time.h>
2 #include "syscall.h"
3
4 int utimes(const char *path, const struct timeval times[2])
5 {
6         return syscall(SYS_utimes, path, times);
7 }