1 2 3 4 5 6 7 8 9 10
#ifndef DEBUG_PRINTF_H_ #define DEBUG_PRINTF_H_ #define DPRINTF( fmt, args...) __debug_printf( __FILE__, __LINE__, fmt, ## args); //#define DPRINTF( fmt, args...) extern void __debug_printf( char *file, int line, char *fmt, ...); #endif /* DEBUG_PRINTF_H_ */