13 lines
213 B
C
13 lines
213 B
C
#ifndef DISTOPS_DEBUG_H
|
|
#define DISTOPS_DEBUG_H
|
|
|
|
#define DEBUG_INIT_DISTOPS
|
|
|
|
#ifdef DEBUG_INIT_DISTOPS
|
|
#define DEBUG_CAPOPS(x...) debug_printf(x)
|
|
#else
|
|
#define DEBUG_CAPOPS(x...)
|
|
#endif
|
|
|
|
#endif // DISTOPS_DEBUG_H
|