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