musl-tcc/src/stat/futimens.c

7 lines
116 B
C
Raw Permalink Normal View History

2022-03-20 08:48:53 +00:00
#include <sys/stat.h>
int futimens(int fd, const struct timespec times[2])
{
return utimensat(fd, 0, times, 0);
}