.
[gnulib.git] / lib / memmove.c
index d9d9e07..d7bdd7c 100644 (file)
@@ -3,9 +3,14 @@
    In the public domain.
    By David MacKenzie <djm@gnu.ai.mit.edu>.  */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
 void
 memmove (dest, source, length)
-     char *dest, *source;
+     char *dest;
+     const char *source;
      unsigned length;
 {
   if (source < dest)