From: Tom Tromey Date: Tue, 17 Jun 2014 18:57:06 +0000 (-0600) Subject: remove redundant savestring declaration X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3bca49eec22679298a36f7fb2059169c61b7cbfa;p=binutils-gdb.git remove redundant savestring declaration I happened to notice that savestring is still declared in utils.h, despite the fact that it was moved to common/ a while back. This patch removes the redundant declaration. Tested by rebuilding. I'm committing this as obvious. 2014-06-17 Tom Tromey * utils.h (savestring): Remove declaration. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index bac875cd67c..39bd3a837e8 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2014-06-17 Tom Tromey + + * utils.h (savestring): Remove declaration. + 2014-06-17 Tom Tromey * remote.c (extended_remote_run): Use make_cleanup_freeargv. diff --git a/gdb/utils.h b/gdb/utils.h index 0eba8aeb114..6e767dc13a8 100644 --- a/gdb/utils.h +++ b/gdb/utils.h @@ -31,8 +31,6 @@ extern void initialize_utils (void); extern int sevenbit_strings; -extern char *savestring (const char *, size_t); - extern int strcmp_iw (const char *, const char *); extern int strcmp_iw_ordered (const char *, const char *);