home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c500 / 1.ddi / H_SYS.WPK / UTIME.H < prev   
Encoding:
C/C++ Source or Header  |  1992-05-28  |  567 b   |  28 lines

  1. /*
  2.  *  sys/utime.h utimbuf structure and prototypes
  3.  *
  4.  *  Copyright (C) by WATCOM Systems Inc. 1988-1992.  All rights reserved.
  5.  */
  6. #ifndef _UTIME_H_INCLUDED
  7.  
  8. #pragma pack(1)
  9.  
  10. #ifndef _TIME_T_DEFINED_
  11.  #define _TIME_T_DEFINED_
  12.  typedef unsigned long time_t;     /* time value */
  13. #endif
  14.  
  15. struct utimbuf {
  16.     time_t    actime;     /* access time */
  17.     time_t    modtime;    /* modification time */
  18. };
  19.  
  20. /*
  21.  *  POSIX 1003.1 Prototype
  22.  */
  23.  int    utime( const char *__path, const struct utimbuf * __times );
  24.  
  25. #pragma pack()
  26. #define _UTIME_H_INCLUDED
  27. #endif
  28.