diff options
author | Tom Tromey <tromey@redhat.com> | 2014-06-17 12:57:06 -0600 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-06-17 12:57:06 -0600 |
commit | 3bca49eec22679298a36f7fb2059169c61b7cbfa (patch) | |
tree | 4f2db228e279ad092b2dc42bff532a3e0937eb1e /gdb/utils.h | |
parent | 6e366df19d789254b8e26cc7620218ce98df324f (diff) | |
download | gdb-3bca49eec22679298a36f7fb2059169c61b7cbfa.zip gdb-3bca49eec22679298a36f7fb2059169c61b7cbfa.tar.gz gdb-3bca49eec22679298a36f7fb2059169c61b7cbfa.tar.bz2 |
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 <tromey@redhat.com>
* utils.h (savestring): Remove declaration.
Diffstat (limited to 'gdb/utils.h')
-rw-r--r-- | gdb/utils.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gdb/utils.h b/gdb/utils.h index 0eba8ae..6e767dc 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 *); |