M2_SETI/T2/tp/T2-TP_suite/debug.h
2022-11-22 15:17:48 +01:00

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