2
0

utime.h 343 B

1234567891011121314151617181920212223242526272829
  1. #ifndef _UTIME_H
  2. #define _UTIME_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #include <features.h>
  7. #define __NEED_time_t
  8. #include <bits/alltypes.h>
  9. struct utimbuf {
  10. time_t actime;
  11. time_t modtime;
  12. };
  13. int utime (const char *, const struct utimbuf *);
  14. #if _REDIR_TIME64
  15. __REDIR(utime, __utime64);
  16. #endif
  17. #ifdef __cplusplus
  18. }
  19. #endif
  20. #endif