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