utime.h 363 B

12345678910111213141516171819202122
  1. #ifndef _SYS_UTIME_H
  2. #define _SYS_UTIME_H
  3. /* This is a dummy <sys/utime.h> file, not customized for any
  4. particular system. If there is a utime.h in libc/sys/SYSDIR/sys,
  5. it will override this one. */
  6. #ifdef __cplusplus
  7. extern "C" {
  8. #endif
  9. struct utimbuf
  10. {
  11. time_t actime;
  12. time_t modtime;
  13. };
  14. #ifdef __cplusplus
  15. };
  16. #endif
  17. #endif /* _SYS_UTIME_H */