aboutsummaryrefslogtreecommitdiff
path: root/libiberty/strchr.c
diff options
context:
space:
mode:
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>1998-12-14 07:01:03 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>1998-12-14 07:01:03 +0000
commit11a0bb74cdf64f43744171b7e7c37258981a7741 (patch)
treeb348c86e9e18670eff439b3af199b2013f9faf12 /libiberty/strchr.c
parent625c729b515b09ec51322dab459b52fdb203060f (diff)
downloadgcc-11a0bb74cdf64f43744171b7e7c37258981a7741.zip
gcc-11a0bb74cdf64f43744171b7e7c37258981a7741.tar.gz
gcc-11a0bb74cdf64f43744171b7e7c37258981a7741.tar.bz2
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/strchr.c')
-rw-r--r--libiberty/strchr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libiberty/strchr.c b/libiberty/strchr.c
index 22976ce..550480f 100644
--- a/libiberty/strchr.c
+++ b/libiberty/strchr.c
@@ -21,7 +21,7 @@ BUGS
char *
strchr (s, c)
- register CONST char *s;
+ register const char *s;
int c;
{
do {