1 /* This file can be included multiple times. It redeclares its macros
2 appropriately each time, like assert.h. */
10 #define debug_printf(args) \
18 #define debug_puts(string) \
26 #define debug_putc(char, stream) \
29 putc (char, stream); \
34 #else /* !DEBUGGING */
36 #define debug_printf(args) \
42 #define debug_puts(string) \
48 #define debug_putc(char, stream) \
54 #endif /* !DEBUGGING */