diff options
Diffstat (limited to 'libiberty/strtoul.c')
-rw-r--r-- | libiberty/strtoul.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libiberty/strtoul.c b/libiberty/strtoul.c index 40902452fed..ff6f2d6784d 100644 --- a/libiberty/strtoul.c +++ b/libiberty/strtoul.c @@ -51,11 +51,11 @@ */ unsigned long strtoul(nptr, endptr, base) - CONST char *nptr; + const char *nptr; char **endptr; register int base; { - register CONST char *s = nptr; + register const char *s = nptr; register unsigned long acc; register int c; register unsigned long cutoff; |