move msghdr and cmsghdr out of bits/socket.h
[musl.git] / src / linux / utimes.c
blob6ca025d95a3255fccc5d5345683fc33aa62f42e6
1 #include <sys/time.h>
2 #include "fcntl.h"
3 #include "syscall.h"
5 int utimes(const char *path, const struct timeval times[2])
7 return __futimesat(AT_FDCWD, path, times);