Sign in
mojo
/
mojo
/
de6c20aad64d53a7061c10e724e9924cfec679f6
/
.
/
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
);
}