utime.h 358 B

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