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