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