1/*
2 * Copyright 2011 Google Inc. All Rights Reserved.
3 * Author: yugui@google.com (Yugui Sonoda)
4 */
5
6#ifndef RUBY_NACL_UTIME_H
7#define RUBY_NACL_UTIME_H
8#include <utime.h>
9int utime(const char *filename, const struct utimbuf *times);
10int utimes(const char *filename, const struct timeval times[2]);
11#endif
12