use the new integer parser (FILE/shgetc based) for strtol, wcstol, etc.
[musl] / src / internal / intparse.h
diff --git a/src/internal/intparse.h b/src/internal/intparse.h
deleted file mode 100644 (file)
index 78e800d..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-#include <stdint.h>
-#include <stddef.h>
-
-struct intparse {
-       uintmax_t val;
-       unsigned small;
-       size_t cnt;
-       char neg, base, state, err;
-};
-
-int __intparse(struct intparse *, const void *, size_t);