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 d9d9e07..7031ff2 100644 (file)
@@ -5,7 +5,8 @@
 
 void
 memmove (dest, source, length)
-     char *dest, *source;
+     char *dest;
+     const char *source;
      unsigned length;
 {
   if (source < dest)