00001 /* The <utime.h> header is used for the utime() system call. */ 00002 00003 #ifndef _UTIME_H 00004 #define _UTIME_H 00005 00006 #ifndef _TYPES_H 00007 #include <sys/types.h> 00008 #endif 00009 00010 struct utimbuf { 00011 time_t actime; /* access time */ 00012 time_t modtime; /* modification time */ 00013 }; 00014 00015 /* Function Prototypes. */ 00016 _PROTOTYPE( int utime, (const char *_path, const struct utimbuf *_times) ); 00017 00018 #endif /* _UTIME_H */
1.4.6