Files
lcdproc/shared/debug.h
T
1999-12-09 23:15:14 +00:00

15 lines
119 B
C

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