home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c496 / 1.img / H_SYS.WPK / UTIME.H < prev   
Encoding:
C/C++ Source or Header  |  1991-08-20  |  420 b   |  23 lines

  1. /*
  2.  *  sys/utime.h
  3.  *
  4.  *  Copyright (C) by WATCOM Systems Inc. 1988-1991.  All rights reserved.
  5.  */
  6. #ifndef _TYPES_H_INCLUDED
  7.  #include <sys/types.h>
  8. #endif
  9.  
  10. #ifndef _UTIME_H_INCLUDED
  11. #pragma pack(1);
  12.  
  13. struct utimbuf {
  14.     time_t    actime;     /* access time */
  15.     time_t    modtime;    /* modification time */
  16. };
  17.  
  18. int utime(const char *, struct utimbuf *);
  19.  
  20. #pragma pack();
  21. #define _UTIME_H_INCLUDED
  22. #endif
  23.