pxe: Fix recognition of keeppxe option
[syslinux.git] / com32 / lib / dprintf.c
blobdea77b39ce10dc4a653d062b5c5bf11e0f38bba4
1 /*
2 * dprintf.c
3 */
5 #include <stdio.h>
6 #include <stdarg.h>
8 #ifdef DEBUG_PORT
10 void vdprintf(const char *, va_list);
12 void dprintf(const char *format, ...)
14 va_list ap;
16 va_start(ap, format);
17 vdprintf(format, ap);
18 va_end(ap);
21 #endif /* DEBUG_PORT */