char *func2(void) { #if defined(__GNUC__) return "\tfunc2() is compiled with gcc " __VERSION__; #elif defined(__IBMC__) return "\tfunc2() is compiled with xlc " __xlc__; #else return "\tfunc2() is compiled with unknown compiler"; #endif }