fk98/src/debug.h

11 lines
132 B
C

#ifndef _DEBUG_H
#define _DEBUG_H
#ifdef DEBUG
#define DPRINTF(x) printf x
#else
#define DPRINTF(x)
#endif
#endif /* !_DEBUG_H */