Imported from ../bash-2.05.tar.gz.
[platform/upstream/bash.git] / lib / readline / savestring.c
index 485890e..7414175 100644 (file)
@@ -27,7 +27,7 @@ extern char *xmalloc ();
    all `public' readline header files. */
 char *
 savestring (s)
-     char *s;
+     const char *s;
 {
   return ((char *)strcpy (xmalloc (1 + (int)strlen (s)), (s)));
 }