Sign in
chromium
/
native_client
/
nacl-bionic
/
e9a1f5a7f61df260d1609a0218db7eb073c9ae33
/
.
/
libc
/
arch-nacl
/
syscalls
/
utimes.c
blob: 70b203bc607f810de64fc0b5fd8ccb516f47e050 [
file
] [
log
] [
blame
]
// Copyright 2014 Google Inc. All Rights Reserved
#include
<errno.h>
#include
<sys/types.h>
#include
<utime.h>
int
utimes
(
const
char
*
filename
,
const
struct
timeval
*
times
)
{
errno
=
ENOSYS
;
return
-
1
;
}