1 #ifndef __MYDEBUG_H 2 #define __MYDEBUG_H 3 4 #define ARGS (const char*, ...) 5 6 #ifdef DEBUG 7 #define LOG(ARGS) dprintf ARGS 8 #else 9 #define LOG(ARGS) 10 #endif // DEBUG 11 12 #endif //__MYDEBUG_H 13