12.04.2015, 21:07
This simple code:
Doesn't compile! Why!?
It seems like this line
finds printf to be defined and tries to execute this line
but compiler emits error on this as it doesn't recognize printf as defined anymore... wtf? Explain me please
Код:
#include <a_samp> #if defined printf #undef printf #endif main(){ }
It seems like this line
Код:
#if defined printf
Код:
#undef printf