Update syslinux to 4.05 to support mic-0.15
[external/syslinux.git] / com32 / lib / dprintf.c
1 /*
2  * dprintf.c
3  */
4
5 #include <stdio.h>
6 #include <stdarg.h>
7
8 #undef DEBUG
9 #define DEBUG 1
10 #include <dprintf.h>
11
12 #ifndef dprintf
13 void dprintf(const char *format, ...)
14 {
15     va_list ap;
16
17     va_start(ap, format);
18     vdprintf(format, ap);
19     va_end(ap);
20 }
21 #endif