home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 3 / Info_Mac_1994-01.iso / Development / Source / MacGzip 0.1b2 Source / gzip-1.2.4 sources / macos / !Posix / utime.h < prev   
Encoding:
C/C++ Source or Header  |  1992-09-18  |  144 b   |  14 lines  |  [TEXT/KAHL]

  1. /* $Id: $ */
  2.  
  3. #pragma once
  4.  
  5. #include "ThinkCPosix.h"
  6.  
  7. struct utimbuf {
  8.     time_t actime;
  9.     time_t modtime;
  10. };
  11.  
  12. int utime(char*, struct utimbuf*);
  13.  
  14.