home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / tmp4 / ckvrtl.h < prev    next >
C/C++ Source or Header  |  2007-02-27  |  468b  |  23 lines

  1. /*
  2.   C-Kermit C RTL replacement functions for VMS systems.
  3. */
  4.  
  5. #ifndef __CKVVMS_H
  6. #define __CKVVMS_H
  7.  
  8. #if __CRTL_VER >= 70300000
  9. #  include <utime.h>
  10. #else /* __CRTL_VER >= 70300000 */
  11. #  define utime vms_utime
  12.  
  13. struct utimbuf {
  14.     time_t actime;    /* access time */
  15.     time_t modtime;    /* modification time */
  16. };
  17.  
  18. int utime(const char *path, const struct utimbuf *times);
  19.  
  20. #endif /* __CRTL_VER >= 70300000 [else] */
  21.  
  22. #endif /* ndef __CKVVMS_H */
  23.