Files
lcdproc/shared/debug.h
T
2000-03-30 20:28:01 +00:00

15 lines
121 B
C

#ifndef DEBUG_H
#define DEBUG_H
#ifdef DEBUG
#define debug printf
#else
#define debug /* printf */
#endif
#endif