utime.h 251 B

12345678910111213141516171819
  1. #ifndef __UTIME_H
  2. #define __UTIME_H
  3. #include <features.h>
  4. #include <sys/types.h>
  5. __BEGIN_DECLS
  6. struct utimbuf {
  7. time_t actime;
  8. time_t modtime;
  9. };
  10. extern int utime __P ((const char *__filename, struct utimbuf *__utimebuf));
  11. __END_DECLS
  12. #endif