Due to server problems the website is temporarily offline! Visit http://www.smorgasbordet.com/pellesc/ to download Pelles C.
#define macro(a) bla_##a##_void bla_1_2_(void) {;}macro(1_2);
#define macro(a) bla_##a##_void bla_12_(void){;}int _cdecl main( void ){ macro(12)(); return 0;}
void bla_1_2_(void){;}
#define macro(a) bla##a##_ //Remove the underscore following 'bla'void bla_1_2_(void) {;}macro(_1_2); //Prepend the underscore here to make the parameter not a number...