Sign in
mojo
/
mojo-tools
/
ce913b53e2545ddd4d4a565997d0816e8ef90a22
/
.
/
fusl
/
src
/
stat
/
futimens.c
blob: ed7dcea7100ac0fde0277207b162f6bfd3aa0637 [
file
] [
log
] [
blame
]
#include
<sys/stat.h>
int
futimens
(
int
fd
,
const
struct
timespec times
[
2
])
{
return
utimensat
(
fd
,
0
,
times
,
0
);
}