Sign in
chromium
/
native_client
/
nacl-bionic
/
e9a1f5a7f61df260d1609a0218db7eb073c9ae33
/
.
/
libc
/
arch-nacl
/
syscalls
/
chmod.c
blob: f52c2edd00b252a0b64ebdeb196cc65610bc5876 [
file
] [
log
] [
blame
]
// Copyright 2014 Google Inc. All Rights Reserved.auto
#include
<errno.h>
#include
<irt_syscalls.h>
#include
<unistd.h>
int
chmod
(
const
char
*
name
,
mode_t
mode
)
{
errno
=
ENOSYS
;
return
-
1
;
}