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/memcpy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libiberty/memcpy.c') diff --git a/libiberty/memcpy.c b/libiberty/memcpy.c index c28208a..707a9f5 100644 --- a/libiberty/memcpy.c +++ b/libiberty/memcpy.c @@ -21,7 +21,7 @@ DESCRIPTION #endif PTR -DEFUN(memcpy, (out, in, length), PTR out AND CONST PTR in AND size_t length) +DEFUN(memcpy, (out, in, length), PTR out AND const PTR in AND size_t length) { bcopy(in, out, length); return out; -- cgit v1.1