diff options
Diffstat (limited to 'gcc/doprint.c')
-rw-r--r-- | gcc/doprint.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/doprint.c b/gcc/doprint.c index 2dc4dde..9d01f9a 100644 --- a/gcc/doprint.c +++ b/gcc/doprint.c @@ -88,7 +88,7 @@ _doprnt (format, ap, stream) if (*ptr == '*') COPY_VA_INT; else - while (isdigit(*ptr)) /* Handle explicit numeric value. */ + while (ISDIGIT(*ptr)) /* Handle explicit numeric value. */ *sptr++ = *ptr++; if (*ptr == '.') @@ -97,7 +97,7 @@ _doprnt (format, ap, stream) if (*ptr == '*') COPY_VA_INT; else - while (isdigit(*ptr)) /* Handle explicit numeric value. */ + while (ISDIGIT(*ptr)) /* Handle explicit numeric value. */ *sptr++ = *ptr++; } while (strchr ("hlL", *ptr)) |