Files
retrobsd/sys/include/debug.h
2015-03-21 14:08:32 -07:00

11 lines
134 B
C

#ifndef _DEBUG_H
#define _DEBUG_H
#ifdef GLOBAL_DEBUG
#define DEBUG(...) printf(__VA_ARGS__)
#else
#define DEBUG(...)
#endif
#endif