6 ms·
on non-gcc compilers this is valid #define include_them 1 #if (include_them==1) #define hotcode /##/ #else #define hotcode #endif void func (void) { hotcode p
by huyvun 13y ago
on non-gcc compilers this is valid
#define include_them 1
#if (include_them==1)
#define hotcode /##/
#else
#define hotcode
#endif
void func (void)
{
hotcode printf("if included_them true, compile this line");
}