summaryrefslogtreecommitdiff
path: root/com32/lib/dprintf.c
blob: 900c0a470f4380f67329a0750a6a8c1a38da0c1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * dprintf.c
 */

#include <stdio.h>
#include <stdarg.h>

#undef DEBUG
#define DEBUG 1
#include <dprintf.h>

void dprintf(const char *format, ...)
{
    va_list ap;

    va_start(ap, format);
    vdprintf(format, ap);
    va_end(ap);
}