fk98/src/debug.h
2020-11-13 21:43:35 -08:00

11 lines
133 B
C

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