11 lines
165 B
C
11 lines
165 B
C
#ifndef XDEBUG_H_QWERTY
|
|
#define XDEBUG_H_QWERTY
|
|
|
|
#ifdef DEBUG
|
|
#define DPRINTF(s, ...) printf(s, __VA_ARGS__)
|
|
#else
|
|
#define DPRINTF(s, ...) ((void)0)
|
|
#endif
|
|
|
|
#endif
|