summaryrefslogtreecommitdiffstats
path: root/contrib/syslinux/latest/com32/lib/dprintf.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/syslinux/latest/com32/lib/dprintf.c')
-rw-r--r--contrib/syslinux/latest/com32/lib/dprintf.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/contrib/syslinux/latest/com32/lib/dprintf.c b/contrib/syslinux/latest/com32/lib/dprintf.c
deleted file mode 100644
index 900c0a4..0000000
--- a/contrib/syslinux/latest/com32/lib/dprintf.c
+++ /dev/null
@@ -1,19 +0,0 @@
-/*
- * 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);
-}