home *** CD-ROM | disk | FTP | other *** search
/ Atari FTP / ATARI_FTP_0693.zip / ATARI_FTP_0693 / Mint / mnthlb30.zoo / utime.h < prev   
C/C++ Source or Header  |  1993-06-02  |  145b  |  10 lines

  1. #ifndef _U_TIME_H
  2. #define _U_TIME_H
  3.  
  4. struct utimbuf {            /* type for times() call */
  5.     time_t    actime;
  6.     time_t    modtime;
  7. };
  8.  
  9. #endif  /* _U_TIME_H */
  10.