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)