From: Jim Meyering Date: Sun, 12 Mar 1995 15:26:36 +0000 (+0000) Subject: Make source const. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0f5b2141ada6dd76e37ca4182db81af0f262b455;p=pspp 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)