home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / mac / developm / librarie / posix10.sit / POSIX / ThinkCPosix / utime.h < prev   
Encoding:
C/C++ Source or Header  |  1992-09-18  |  144 b   |  14 lines

  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.