summaryrefslogtreecommitdiff
path: root/com32/lib/dprintf.c
blob: dea77b39ce10dc4a653d062b5c5bf11e0f38bba4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * 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 */