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;
}