* safe-ctype.c: #include "ansidecl.h".

* strtod.c: Likewise.
* strtoul.c: Include safe-ctype.h, not ctype.h.
This commit is contained in:
DJ Delorie
2000-12-17 03:07:49 +00:00
parent 780a49fab4
commit f021637a75
4 changed files with 12 additions and 1 deletions

View File

@ -37,7 +37,6 @@
#ifdef HAVE_SYS_PARAM_H
#include <sys/param.h>
#endif
#include <ctype.h>
#include <errno.h>
#ifdef NEED_DECLARATION_ERRNO
extern int errno;
@ -46,6 +45,7 @@ extern int errno;
#include <stdlib.h>
#endif
#include "ansidecl.h"
#include "safe-ctype.h"
#ifndef ULONG_MAX
#define ULONG_MAX ((unsigned long)(~0L)) /* 0xFFFFFFFF */