1 /* The <utime.h> header is used for the utime() system call. */ 2 3 #ifndef _UTIME_H 4 #define _UTIME_H 5 6 #ifndef _TYPES_H 7 #include <minix/types.h> 8 #endif 9 10 struct utimbuf { 11 time_t actime; /* access time */ 12 time_t modtime; /* modification time */ 13 }; 14 15 /* Function Prototypes. */ 16 _PROTOTYPE( int utime, (const char *_path, const struct utimbuf *_times) ); 17 18 #endif /* _UTIME_H */ 19