From 3bca49eec22679298a36f7fb2059169c61b7cbfa Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Tue, 17 Jun 2014 12:57:06 -0600 Subject: [PATCH] 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. --- gdb/ChangeLog | 4 ++++ gdb/utils.h | 2 -- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index bac875cd67..39bd3a837e 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 0eba8aeb11..6e767dc13a 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 *);