From 50ace4fec5e8cb5afcbc656a4556fa528adfd760 Mon Sep 17 00:00:00 2001 From: David 'Digit' Turner Date: Wed, 16 Jun 2010 16:36:41 -0700 Subject: Remove compiler warnings when building Bionic. Also add missing declarations to misc. functions. Fix clearerr() implementation (previous was broken). Handle feature test macros like _POSIX_C_SOURCE properly. Change-Id: Icdc973a6b9d550a166fc2545f727ea837fe800c4 --- libc/stdlib/strntoumax.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libc/stdlib') diff --git a/libc/stdlib/strntoumax.c b/libc/stdlib/strntoumax.c index a151ef5..050d718 100644 --- a/libc/stdlib/strntoumax.c +++ b/libc/stdlib/strntoumax.c @@ -48,7 +48,7 @@ static inline int digitval(int ch) uintmax_t strntoumax(const char *nptr, char **endptr, int base, size_t n) { - const unsigned char* p = nptr; + const unsigned char* p = (const unsigned char *)nptr; const unsigned char* end = p + n; int minus = 0; uintmax_t v = 0; -- cgit v1.1