Files
helmetc/libxtools/xdebug.h
2025-10-18 16:31:44 +02:00

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