allwinner_a64/android/external/syslinux/com32/lib/dprintf.c
2018-08-08 16:14:42 +08:00

21 lines
271 B
C

/*
* dprintf.c
*/
#include <stdio.h>
#include <stdarg.h>
#ifdef DEBUG_PORT
void vdprintf(const char *, va_list);
void dprintf(const char *format, ...)
{
va_list ap;
va_start(ap, format);
vdprintf(format, ap);
va_end(ap);
}
#endif /* DEBUG_PORT */