1 2 3 4 5 6 7 8 9 10 11
#if defined(WITH_C) #include "c.h" #endif int b_fun(void){ #if defined(WITH_C) return c_fun(); #else return 0; #endif }