Make source const.
authorJim Meyering <jim@meyering.net>
Sun, 12 Mar 1995 15:26:36 +0000 (15:26 +0000)
committerJim Meyering <jim@meyering.net>
Sun, 12 Mar 1995 15:26:36 +0000 (15:26 +0000)
lib/memmove.c

index d9d9e077ea42814aade747895eb05687d628e0f1..7031ff24cf131fa477b4524cbc21a58c4530f35d 100644 (file)
@@ -5,7 +5,8 @@
 
 void
 memmove (dest, source, length)
-     char *dest, *source;
+     char *dest;
+     const char *source;
      unsigned length;
 {
   if (source < dest)