diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 1998-12-14 07:01:03 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 1998-12-14 07:01:03 +0000 |
commit | 11a0bb74cdf64f43744171b7e7c37258981a7741 (patch) | |
tree | b348c86e9e18670eff439b3af199b2013f9faf12 /libiberty/strtol.c | |
parent | 625c729b515b09ec51322dab459b52fdb203060f (diff) | |
download | gcc-11a0bb74cdf64f43744171b7e7c37258981a7741.tar.gz |
choose-temp.c: Don't check IN_GCC anymore.
* choose-temp.c: Don't check IN_GCC anymore.
* floatformat.c (floatformat_from_double): Use `const', not `CONST'.
* memchr.c (memchr): Likewise.
* memcpy.c (memcpy): Likewise.
* memmove.c (memmove): Likewise.
* mkstemp.c: Don't check IN_GCC anymore.
* pexecute.c: Likewise.
* splay-tree.c: Likewise.
* strchr.c (strchr): Use `const', not `CONST'.
* strrchr.c (strrchr): Likewise.
* strtol.c (strtol): Likewise.
* strtoul.c (strtoul): Likewise.
From-SVN: r24307
Diffstat (limited to 'libiberty/strtol.c')
-rw-r--r-- | libiberty/strtol.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libiberty/strtol.c b/libiberty/strtol.c index db27ee0a875..37d170660f2 100644 --- a/libiberty/strtol.c +++ b/libiberty/strtol.c @@ -63,11 +63,11 @@ */ long strtol(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; |