diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-06-09 02:12:21 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-06-09 02:12:21 +0000 |
commit | 748634526fb74b0849a550b00ba88a44d3f81f28 (patch) | |
tree | 170774d1e0ee75302e10ef8351ebd90910123e80 /gcc/read-rtl.c | |
parent | 5f0cd095b322a62b9229242705d610da9baa2d7c (diff) | |
download | gcc-748634526fb74b0849a550b00ba88a44d3f81f28.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@54392 138bc75d-0d04-0410-961f-82ee72b054a4
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 |