logo

oasis-root

Compiled tree of Oasis Linux based on own branch at <https://hacktivis.me/git/oasis/> git clone https://anongit.hacktivis.me/git/oasis-root.git

utime.h (343B)


  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