utime.h 134 B

1234567891011
  1. #ifndef _LINUX_UTIME_H
  2. #define _LINUX_UTIME_H
  3. #include <linux/types.h>
  4. struct utimbuf {
  5. time_t actime;
  6. time_t modtime;
  7. };
  8. #endif