add obsolete futimesat()
[musl] / src / stat / futimesat.c
1 #include <sys/time.h>
2 #include "syscall.h"
3
4 #ifdef SYS_futimesat
5 int futimesat(int dirfd, const char *pathname, const struct timeval times[2])
6 {
7         return syscall(SYS_futimesat, dirfd, pathname, times);
8 }
9 #endif