1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-20 18:56:39 +02:00

Make source const.

This commit is contained in:
Jim Meyering
1995-03-12 15:26:36 +00:00
parent e677aefec1
commit 91f5d65874

View File

@@ -5,7 +5,8 @@
void
memmove (dest, source, length)
char *dest, *source;
char *dest;
const char *source;
unsigned length;
{
if (source < dest)