syslinux.mk: use $(MAKEDIR) not $(makefiledir)
[syslinux.git] / com32 / lib / dprintf.c
blob900c0a470f4380f67329a0750a6a8c1a38da0c1e
1 /*
2 * dprintf.c
3 */
5 #include <stdio.h>
6 #include <stdarg.h>
8 #undef DEBUG
9 #define DEBUG 1
10 #include <dprintf.h>
12 void dprintf(const char *format, ...)
14 va_list ap;
16 va_start(ap, format);
17 vdprintf(format, ap);
18 va_end(ap);