Changeset 5136 for trunk/include/initdll.h
- Timestamp:
- Feb 14, 2001, 4:34:28 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/initdll.h
r5135 r5136 7 7 #endif 8 8 9 #if (__IBMCPP__ == 300) || (__IBMC__ == 300) 9 10 void _Optlink __ctordtorInit( void ); 10 #define ctordtorInit __ctordtorInit11 #define ctordtorInit() __ctordtorInit() 11 12 12 #if (__IBMCPP__ == 300) || (__IBMC__ == 300)13 13 void _Optlink __ctordtorTerm( void ); 14 #define ctordtorTerm __ctordtorTerm 14 #define ctordtorTerm() __ctordtorTerm() 15 16 #elif (__IBMCPP__ == 360) || (__IBMC__ == 360) 17 void _Optlink __ctordtorInit( int flag ); 18 #define ctordtorInit() __ctordtorInit(0) 19 20 void _Optlink __ctordtorTerm( int flag ); 21 #define ctordtorTerm() __ctordtorTerm(0) 22 15 23 #else 16 void CDECL _ctordtorTerm( int workaroundforstupidcompilerbug ); 17 #define ctordtorTerm() _ctordtorTerm(1) 24 #error "Unknown compiler!" 18 25 #endif 19 26
Note:
See TracChangeset
for help on using the changeset viewer.