summaryrefslogtreecommitdiff
path: root/lib/libc/stat/futimens.c
blob: 974d2eb7c38a86f9e18d3b19111c02988d32f701 (plain)
1
2
3
4
5
6
7
#include <stddef.h>
#include <sys/stat.h>

int futimens(int fd, const struct timespec times[2])
{
	return utimensat(fd, NULL, times, 0);
}