#ifndef __DEBUG_H #define __DEBUG_H #ifdef APP_DEBUG #define debug_printf(fmt, ...) \ printf((fmt) __VA_OPT__(,) __VA_ARGS__) #else #define debug_printf(fmt, ...) #endif #endif /* !__DEBUG_H */