Ignore:
Timestamp:
Feb 14, 2001, 4:34:28 PM (25 years ago)
Author:
sandervl
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/initdll.h

    r5135 r5136  
    77#endif
    88
     9#if (__IBMCPP__ == 300) || (__IBMC__ == 300)
    910void _Optlink __ctordtorInit( void );
    10 #define ctordtorInit    __ctordtorInit
     11#define ctordtorInit()  __ctordtorInit()
    1112
    12 #if (__IBMCPP__ == 300) || (__IBMC__ == 300)
    1313void _Optlink __ctordtorTerm( void );
    14 #define ctordtorTerm    __ctordtorTerm
     14#define ctordtorTerm()  __ctordtorTerm()
     15
     16#elif (__IBMCPP__ == 360) || (__IBMC__ == 360)
     17void _Optlink __ctordtorInit( int flag );
     18#define ctordtorInit()  __ctordtorInit(0)
     19
     20void _Optlink __ctordtorTerm( int flag );
     21#define ctordtorTerm()  __ctordtorTerm(0)
     22
    1523#else
    16 void CDECL _ctordtorTerm( int workaroundforstupidcompilerbug );
    17 #define ctordtorTerm()  _ctordtorTerm(1)
     24#error "Unknown compiler!"
    1825#endif
    1926
Note: See TracChangeset for help on using the changeset viewer.