diff options
Diffstat (limited to 'gcc/cppexp.c')
-rw-r--r-- | gcc/cppexp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cppexp.c b/gcc/cppexp.c index 040bf86..c7a00da 100644 --- a/gcc/cppexp.c +++ b/gcc/cppexp.c @@ -129,7 +129,7 @@ parse_number (pfile, tok) { c = *p; - if (c >= '0' && c <= '9') + if (ISDIGIT (c)) digit = c - '0'; /* We believe that in all live character sets, a-f are consecutive, and so are A-F. */ |