diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2002-06-09 02:12:21 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2002-06-09 02:12:21 +0000 |
commit | 1f8e46828a49664e245a474f5c0c4ebd5c7bc213 (patch) | |
tree | 170774d1e0ee75302e10ef8351ebd90910123e80 /gcc/read-rtl.c | |
parent | f210d2390da5b25abee4bd86e4263e3d3bc5395f (diff) | |
download | gcc-1f8e46828a49664e245a474f5c0c4ebd5c7bc213.tar.gz |
genautomata.c: Don't include ctype.h or limits.h.
* genautomata.c: Don't include ctype.h or limits.h. Use ISSPACE,
not isspace.
* gengtype-lex.l: Don't include ctype.h and use ISSPACE/ISIDNUM in
lieu of isspace/IDchar.
* gengtype.c: Likewise for ctype.h and ISALNUM vs isalnum.
* read-rtl.c: Likewise for ctype.h. Don't define ISDIGIT or
ISSPACE.
From-SVN: r54392
Diffstat (limited to 'gcc/read-rtl.c')
-rw-r--r-- | gcc/read-rtl.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/gcc/read-rtl.c b/gcc/read-rtl.c index 5db7b99a409..03b0f7d4b0d 100644 --- a/gcc/read-rtl.c +++ b/gcc/read-rtl.c @@ -25,12 +25,6 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA #include "obstack.h" #include "hashtab.h" -#ifndef ISDIGIT -#include <ctype.h> -#define ISDIGIT isdigit -#define ISSPACE isspace -#endif - #define obstack_chunk_alloc xmalloc #define obstack_chunk_free free |