Files
lcdproc/shared/debug.h
T

15 lines
126 B
C
Raw Normal View History

1999-12-09 23:15:14 +00:00
#ifndef DEBUG_H
#define DEBUG_H
#ifdef DEBUG
#define debug printf
#else
2000-04-03 22:13:57 +00:00
#define debug /* printf */
1999-12-09 23:15:14 +00:00
#endif
#endif