summaryrefslogtreecommitdiff
path: root/src/internal/intparse.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/internal/intparse.h')
-rw-r--r--src/internal/intparse.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/internal/intparse.h b/src/internal/intparse.h
deleted file mode 100644
index 78e800d1..00000000
--- a/src/internal/intparse.h
+++ /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);