/* * dprintf.c */ #include #include #undef DEBUG #define DEBUG 1 #include #ifndef dprintf void dprintf(const char *format, ...) { va_list ap; va_start(ap, format); vdprintf(format, ap); va_end(ap); } #endif