M2_SETI/T2/tp/debug.h

6 lines
91 B
C
Raw Normal View History

2022-10-19 09:02:34 +02:00
//C macro to active debug printf
#ifdef DEBUG
# define D(x) x
#else
# define D(x)
#endif