#ifndef CTIME_INCLUDED #define CTIME_INCLUDED // ---------------------------------------------------------------------- // // ctime - interface to system or // // History: // 11-Feb-1998 WEB Created by extraction from ZMtimer facility // 23-Feb-1998 WEB Created by extraction from now-defunct ZMtime.h // 17-Apr-1998 WEB Added LINUX support // 15-May-1998 WEB Added OSF1 support, contributed by Flavia Donno // 20-May-1998 WEB Added MSVC++ support // 10-Jun-1998 WEB Corrected OSF1 support, per Matteo Menguzzato // 23-Nov-1998 WEB Accounted for signal.h problem under IRIX6 // 12-Mar-1999 PTK Added Solaris support // 22-Apr-1998 WEB Simplified IRIX6 dependencies, assuming the // correct POSIX-compliant compilation command line // 19-May-1999 WEB Removed all typedef's to insulate this file from // use by ZMtimer, etc.; #include'd ZMenvironment header // 26-May-1999 JMM Remove unneeded conditionals (e. g., __GNUG__ ) // since the egcs compiler doesn't need special treatment and make // good on the promise to always include the system is there // is one. // 22-Jun-2000 WEB Adapt to work on Sun under gcc, too // // ---------------------------------------------------------------------- #ifndef ZMENVIRONMENT_H #include "ZMutility/ZMenvironment.h" #endif // ZMENVIRONMENT_H #if defined IRIX6 || defined LINUX || defined OSF1 || defined SunOS #include #include #elif defined _MSC_VER #include #include #include #elif defined __vxworks__ #include #include #else #include #endif #endif // CTIME_INCLUDED // // ----------------------------------------------------------------------