1 #ifndef _SYS_UTIME_H 2 #define _SYS_UTIME_H 3 4 #ifdef __cplusplus 5 extern "C" { 6 #endif 7 #include <_ansi.h> 8 #include <sys/types.h> 9 10 struct utimbuf 11 { 12 time_t actime; 13 time_t modtime; 14 }; 15 16 int _EXFUN(utime, (const char *__path, struct utimbuf *__buf)); 17 18 #ifdef __cplusplus 19 }; 20 #endif 21 22 #endif /* _SYS_UTIME_H */ |