utime.h 217 B

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