From: Jim Meyering Date: Sun, 12 Mar 1995 15:26:36 +0000 (+0000) Subject: Make source const. X-Git-Tag: textutils-1_12_1~263 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=91f5d658749bfdcd3e8223e628c051d41dacf5f9;p=thirdparty%2Fcoreutils.git Make source const. --- diff --git a/lib/memmove.c b/lib/memmove.c index d9d9e077ea..7031ff24cf 100644 --- a/lib/memmove.c +++ b/lib/memmove.c @@ -5,7 +5,8 @@ void memmove (dest, source, length) - char *dest, *source; + char *dest; + const char *source; unsigned length; { if (source < dest)