Sign in
nest-open-source
/
stadia-controller
/
gcc-arm-none-eabi
/
refs/heads/master
/
.
/
src
/
newlib
/
libgloss
/
m32r
/
utime.c
blob: ea8da2f3c93d00e462a6b78e7f4ffa2c9c7cf623 [
file
] [
log
] [
blame
] [
edit
]
#include
<sys/types.h>
#include
<sys/stat.h>
#include
"syscall.h"
#include
"eit.h"
int
_utime
(
path
,
times
)
const
char
*
path
;
char
*
times
;
{
return
TRAP0
(
SYS_utime
,
path
,
times
,
0
);
}