M2_SETI/T2/tp/debug.h
2022-10-19 09:02:34 +02: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