]> git.ipfire.org Git - thirdparty/bash.git/blobdiff - lib/readline/savestring.c
Imported from ../bash-2.05.tar.gz.
[thirdparty/bash.git] / lib / readline / savestring.c
index 485890ea57cd6e524412a4b0a8f01d8aba5d5bfb..74141750fa1a15ef7f6196328c56ed2e8d41c078 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)));
 }