X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=readline%2Fsavestring.c;h=820428d8881165a0374a1691233a315c79fa3a74;hb=b5057acde36b5a9a52e1505a29091ec17c0b6ac5;hp=3f53a87bcd14fa32d323c4a8da9f0157a6e199ef;hpb=abd8680d6efd97e7ba848a6392ee3ad72be18cd0;p=deliverable%2Fbinutils-gdb.git diff --git a/readline/savestring.c b/readline/savestring.c index 3f53a87bcd..820428d888 100644 --- a/readline/savestring.c +++ b/readline/savestring.c @@ -1,13 +1,13 @@ /* 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. The GNU Readline Library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License - as published by the Free Software Foundation; either version 1, or + as published by the Free Software Foundation; either version 2, or (at your option) any later version. The GNU Readline Library is distributed in the hope that it will be @@ -18,16 +18,20 @@ The GNU General Public License is often shipped with GNU software, and 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, - 675 Mass Ave, Cambridge, MA 02139, USA. */ + 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))); }