X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=readline%2Fsavestring.c;h=820428d8881165a0374a1691233a315c79fa3a74;hb=b5057acde36b5a9a52e1505a29091ec17c0b6ac5;hp=485890ea57cd6e524412a4b0a8f01d8aba5d5bfb;hpb=2ee563b53258d390d7446e90a67f465d504ae44c;p=deliverable%2Fbinutils-gdb.git diff --git a/readline/savestring.c b/readline/savestring.c index 485890ea57..820428d888 100644 --- a/readline/savestring.c +++ b/readline/savestring.c @@ -1,6 +1,6 @@ /* savestring.c */ -/* Copyright (C) 1998 Free Software Foundation, Inc. +/* Copyright (C) 1998,2003 Free Software Foundation, Inc. This file is part of the GNU Readline Library, a library for reading lines of text with interactive input and history editing. @@ -19,15 +19,19 @@ is generally kept in a file called COPYING or LICENSE. If you do not have a copy of the license, write to the Free Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA. */ +#define READLINE_LIBRARY -extern char *strcpy (); -extern char *xmalloc (); +#include +#ifdef HAVE_STRING_H +# include +#endif +#include "xmalloc.h" /* Backwards compatibility, now that savestring has been removed from all `public' readline header files. */ char * savestring (s) - char *s; + const char *s; { - return ((char *)strcpy (xmalloc (1 + (int)strlen (s)), (s))); + return ((char *)strcpy ((char *)xmalloc (1 + strlen (s)), (s))); }