home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / e / emxdev8f.zip / UTIME.H < prev    next >
C/C++ Source or Header  |  1992-11-18  |  478b  |  31 lines

  1. /* sys/utime.h (emx+gcc) */
  2.  
  3. #if !defined (_SYS_UTIME_H)
  4. #define _SYS_UTIME_H
  5.  
  6. #if defined (__cplusplus)
  7. extern "C" {
  8. #endif
  9.  
  10. #if !defined (_TIME_T)
  11. #define _TIME_T
  12. typedef unsigned long time_t;
  13. #endif
  14.  
  15. #if !defined (_UTIMBUF)
  16. #define _UTIMBUF
  17. struct utimbuf
  18. {
  19.   time_t actime;
  20.   time_t modtime;
  21. };
  22. #endif
  23.  
  24. int utime (__const__ char *name, __const__ struct utimbuf *times);
  25.  
  26. #if defined (__cplusplus)
  27. }
  28. #endif
  29.  
  30. #endif /* !defined (_SYS_UTIME_H) */
  31.