From: Richard Stallman Date: Sat, 26 Jun 1993 12:27:32 +0000 (+0000) Subject: Include ctype.h. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8ffd69e44993fd497d031d2a548bd9bacd8a81c3;p=gcc.git Include ctype.h. (isalnum, isdigit): Macros deleted. From-SVN: r4744 --- diff --git a/gcc/c-lex.c b/gcc/c-lex.c index d83b5dccb62..f5f88721ffd 100644 --- a/gcc/c-lex.c +++ b/gcc/c-lex.c @@ -31,6 +31,8 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "flags.h" #include "c-parse.h" +#include + #ifdef MULTIBYTE_CHARS #include #include @@ -883,8 +885,6 @@ handle_sysv_pragma (input, c) #endif /* HANDLE_SYSV_PRAGMA */ -#define isalnum(char) ((char >= 'a' && char <= 'z') || (char >= 'A' && char <= 'Z') || (char >= '0' && char <= '9')) -#define isdigit(char) (char >= '0' && char <= '9') #define ENDFILE -1 /* token that represents end-of-file */ /* Read an escape sequence, returning its equivalent as a character,