summaryrefslogtreecommitdiff
path: root/com32/lib/dprintf.c
diff options
context:
space:
mode:
Diffstat (limited to 'com32/lib/dprintf.c')
-rw-r--r--com32/lib/dprintf.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/com32/lib/dprintf.c b/com32/lib/dprintf.c
index 900c0a47..aad11746 100644
--- a/com32/lib/dprintf.c
+++ b/com32/lib/dprintf.c
@@ -9,6 +9,7 @@
#define DEBUG 1
#include <dprintf.h>
+#ifndef dprintf
void dprintf(const char *format, ...)
{
va_list ap;
@@ -17,3 +18,4 @@ void dprintf(const char *format, ...)
vdprintf(format, ap);
va_end(ap);
}
+#endif