11 lines
197 B
C
11 lines
197 B
C
#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 */
|