home *** CD-ROM | disk | FTP | other *** search
- #if __IBMC__ || __IBMCPP__
- #pragma info( none )
- #ifndef __CHKHDR__
- #pragma info( none )
- #endif
- #pragma info( restore )
- #endif
-
- #ifndef __utime_h
- #define __utime_h
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
- #ifndef _LNK_CONV
- #if __IBMC__ || __IBMCPP__ || defined(_OPTLINK_SUPPORTED)
- #define _LNK_CONV _Optlink
- #else
- #define _LNK_CONV
- #endif
- #endif
-
- #ifndef _IMPORT
- #ifdef __IMPORTLIB__
- #define _IMPORT _Import
- #else
- #define _IMPORT
- #endif
- #endif
-
- /********************************************************************/
- /* <sys\utime.h> header file */
- /* */
- /* (C) Copyright IBM Corp. 1991, 1995. */
- /* - Licensed Material - Program-Property of IBM */
- /* - All rights reserved */
- /* */
- /********************************************************************/
-
- #if defined(__EXTENDED__)
-
- #ifndef __time_t
- #define __time_t
- typedef long time_t;
- #endif
-
- /* define struct used by _utime() function */
-
- struct utimbuf
- {
- time_t actime; /* access time */
- time_t modtime; /* modification time */
- };
-
- /* function prototypes */
-
- extern int _IMPORT _LNK_CONV _utime( char *, struct utimbuf * );
-
- #define utime(a,b) _utime((a),(b))
-
- #endif
-
- #ifdef __cplusplus
- }
- #endif
-
- #endif
-
- #if __IBMC__ || __IBMCPP__
- #pragma info( none )
- #ifndef __CHKHDR__
- #pragma info( restore )
- #endif
- #pragma info( restore )
- #endif
-