00001 00008 #ifndef CCTALK_DEBUG_H 00009 #define CCTALK_DEBUG_H 00010 #include <stdio.h> /* Only here to eliminate the need for a c file */ 00011 00012 #if DEBUG 00013 #define cct_debug printf 00014 #else 00015 #define cct_debug(x...) 00016 #endif 00017 00018 #endif /* CCTALK_DEBUG_H */
1.3.6