Drop syslinux, require distro's version instead.
[bootcd.git] / syslinux / com32 / lib / sscanf.c
diff --git a/syslinux/com32/lib/sscanf.c b/syslinux/com32/lib/sscanf.c
deleted file mode 100644 (file)
index 81aab9e..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-/*
- * sscanf()
- */
-
-#include <stdio.h>
-
-int sscanf(const char *str, const char *format, ...)
-{
-  va_list ap;
-  int rv;
-
-  va_start(ap, format);
-  rv = vsscanf(str, format, ap);
-  va_end(ap);
-
-  return rv;
-}