6 lines
91 B
C
6 lines
91 B
C
|
//C macro to active debug printf
|
||
|
#ifdef DEBUG
|
||
|
# define D(x) x
|
||
|
#else
|
||
|
# define D(x)
|
||
|
#endif
|