Sign in
mojo
/
mojo-tools
/
17e3b04429ce6ad836128e1ceffefd85493ec779
/
.
/
fusl
/
src
/
linux
/
utimes.c
blob: 182e85e39ae42dbe13f01fe511a508c54cd6269d [
file
] [
log
] [
blame
]
#include
<sys/time.h>
#include
"fcntl.h"
#include
"syscall.h"
int
__futimesat
(
int
,
const
char
*,
const
struct
timeval
[
2
]);
int
utimes
(
const
char
*
path
,
const
struct
timeval times
[
2
])
{
return
__futimesat
(
AT_FDCWD
,
path
,
times
);
}