in C, what is the proper way to define a printf like macro that will print only when DEBUG symbol is defined?
#ifdef DEBUG #define DEBUG_PRINT(???) ??? #else