Drop syslinux, require distro's version instead.
[bootcd.git] / syslinux / com32 / lib / printf.c
diff --git a/syslinux/com32/lib/printf.c b/syslinux/com32/lib/printf.c
deleted file mode 100644 (file)
index 3423759..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-/*
- * printf.c
- */
-
-#include <stdio.h>
-#include <stdarg.h>
-
-#define BUFFER_SIZE    16384
-
-int printf(const char *format, ...)
-{
-  va_list ap;
-  int rv;
-
-  va_start(ap, format);
-  rv = vfprintf(stdout, format, ap);
-  va_end(ap);
-  return rv;
-}