home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / gnu / djgpp / include / utime.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-08-24  |  140 b   |  10 lines

  1. #include <sys/types.h>
  2.  
  3. struct utimbuf
  4. {
  5.     time_t    actime;
  6.     time_t    modtime;
  7. };
  8.  
  9. extern int    utime(const char *, const struct utimbuf *);
  10.