#include #include #define DEBUG #ifdef DEBUG //debug #define print(format, args...) {\ char _macro_mesg[80]; \ snprintf(_macro_mesg, 80, format, ##args); \ printf("%s | %s:%d in %s\n", _macro_mesg, __func__, __LINE__, __FILE__); \ } #else //prod #define print(format, args...) #endif int main() { print("Hello World") return 0; }