home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / zip / gnu / includ87.lzh / INCLUD87 / UTIME.H < prev    next >
C/C++ Source or Header  |  1993-07-30  |  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.