more header fixes, minor warning fix

This commit is contained in:
Rich Felker
2011-02-14 19:33:11 -05:00
parent 5377715ce0
commit c247ebdd98
6 changed files with 18 additions and 6 deletions

View File

@ -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;

View File

@ -1,4 +1,5 @@
#include <wchar.h>
#include <wctype.h>
#include <inttypes.h>
#include <errno.h>

View File

@ -1,4 +1,5 @@
#include <wchar.h>
#include <wctype.h>
#include <stdlib.h>
#include <inttypes.h>
#include <errno.h>