Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
src
stat
futimens.c
pretty
plain
permalink
blame
history
•
6 lines
•
116 B
1
#include <sys/stat.h>
2
3
int futimens(int fd, const struct timespec times[2])
4
{
5
	return utimensat(fd, 0, times, 0);
6
}