home *** CD-ROM | disk | FTP | other *** search
/ Atari FTP / ATARI_FTP_0693.zip / ATARI_FTP_0693 / Mint / mntinc25.zoo / utime.h < prev    next >
C/C++ Source or Header  |  1992-12-12  |  138b  |  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.