1 /* Copyright (c) 2007 Patrick Mansfield <patmans@us.ibm.com> */ 2 #ifndef _SYS_UTIME_H 3 #define _SYS_UTIME_H 4 5 #ifdef __cplusplus 6 extern "C" { 7 #endif 8 9 /* 10 * Per POSIX 11 */ 12 struct utimbuf 13 { 14 time_t actime; 15 time_t modtime; 16 }; 17 18 int utime(const char *, const struct utimbuf *); 19 20 #ifdef __cplusplus 21 }; 22 #endif 23 24 #endif 25