Files
lcdproc/shared/debug.h
T

17 lines
150 B
C
Raw Normal View History

1999-12-09 23:15:14 +00:00
#ifndef DEBUG_H
#define DEBUG_H
#include "../config.h"
1999-12-09 23:15:14 +00:00
#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