Ruby
2.0.0p247(2013-06-27revision41674)
|
00001 /* 00002 * Copyright 2011 Google Inc. All Rights Reserved. 00003 * Author: yugui@google.com (Yugui Sonoda) 00004 */ 00005 00006 #ifndef RUBY_NACL_UTIME_H 00007 #define RUBY_NACL_UTIME_H 00008 #include <utime.h> 00009 int utime(const char *filename, const struct utimbuf *times); 00010 int utimes(const char *filename, const struct timeval times[2]); 00011 #endif 00012