From c247ebdd989365d20da3ce41fdeb2002e0a1ba13 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Mon, 14 Feb 2011 19:33:11 -0500 Subject: more header fixes, minor warning fix --- src/stdlib/strtoimax.c | 4 ++-- src/stdlib/wcstoimax.c | 1 + src/stdlib/wcstoumax.c | 1 + 3 files changed, 4 insertions(+), 2 deletions(-) (limited to 'src/stdlib') diff --git a/src/stdlib/strtoimax.c b/src/stdlib/strtoimax.c index 19691091..aeb0397f 100644 --- a/src/stdlib/strtoimax.c +++ b/src/stdlib/strtoimax.c @@ -4,7 +4,7 @@ intmax_t strtoimax(const char *s1, char **p, int base) { - const unsigned char *s = s1; + const unsigned char *s = (const void *)s1; int sign = 0; uintmax_t x; @@ -15,7 +15,7 @@ intmax_t strtoimax(const char *s1, char **p, int base) if (*s == '-') sign = *s++; else if (*s == '+') s++; - x = strtoumax(s, p, base); + x = strtoumax((const void *)s, p, base); if (x > INTMAX_MAX) { if (!sign || -x != INTMAX_MIN) errno = ERANGE; diff --git a/src/stdlib/wcstoimax.c b/src/stdlib/wcstoimax.c index 861fcb54..59894f60 100644 --- a/src/stdlib/wcstoimax.c +++ b/src/stdlib/wcstoimax.c @@ -1,4 +1,5 @@ #include +#include #include #include diff --git a/src/stdlib/wcstoumax.c b/src/stdlib/wcstoumax.c index a8f4680f..456ddedd 100644 --- a/src/stdlib/wcstoumax.c +++ b/src/stdlib/wcstoumax.c @@ -1,4 +1,5 @@ #include +#include #include #include #include -- cgit v1.2.1