projects
/
oweals
/
musl.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
implement futimens and utimensat
[oweals/musl.git]
/
src
/
stat
/
futimens.c
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
}