From 11a0bb74cdf64f43744171b7e7c37258981a7741 Mon Sep 17 00:00:00 2001 From: "Kaveh R. Ghazi" Date: Mon, 14 Dec 1998 07:01:03 +0000 Subject: 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 --- libiberty/memchr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libiberty/memchr.c') diff --git a/libiberty/memchr.c b/libiberty/memchr.c index 93ef43d..cce3003 100644 --- a/libiberty/memchr.c +++ b/libiberty/memchr.c @@ -44,11 +44,11 @@ QUICKREF PTR memchr (src_void, c, length) - register CONST PTR src_void; + register const PTR src_void; int c; size_t length; { - CONST unsigned char *src = (CONST unsigned char *)src_void; + const unsigned char *src = (const unsigned char *)src_void; while (--length >= 0) { -- cgit v1.1