aboutsummaryrefslogtreecommitdiff
path: root/gdb/linespec.c
diff options
context:
space:
mode:
authorDoug Evans <dje@google.com>2013-01-23 20:07:39 +0000
committerDoug Evans <dje@google.com>2013-01-23 20:07:39 +0000
commitb1ae631a1eef7fed67ac11105007887e23f855f7 (patch)
tree2ce1394fe0e44038b3755253c91072ab4c67a604 /gdb/linespec.c
parent55a784010272d22fa1ebbc75a946fa49e4e5d78b (diff)
downloadfsf-binutils-gdb-b1ae631a1eef7fed67ac11105007887e23f855f7.zip
fsf-binutils-gdb-b1ae631a1eef7fed67ac11105007887e23f855f7.tar.gz
fsf-binutils-gdb-b1ae631a1eef7fed67ac11105007887e23f855f7.tar.bz2
* linespec.c (find_linespec_symbols): Make static.
Diffstat (limited to 'gdb/linespec.c')
-rw-r--r--gdb/linespec.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gdb/linespec.c b/gdb/linespec.c
index 70fc401..bc2415c 100644
--- a/gdb/linespec.c
+++ b/gdb/linespec.c
@@ -319,11 +319,11 @@ static VEC (symbolp) *find_label_symbols (struct linespec_state *self,
VEC (symbolp) **label_funcs_ret,
const char *name);
-void find_linespec_symbols (struct linespec_state *self,
- VEC (symtab_p) *file_symtabs,
- const char *name,
- VEC (symbolp) **symbols,
- VEC (minsym_and_objfile_d) **minsyms);
+static void find_linespec_symbols (struct linespec_state *self,
+ VEC (symtab_p) *file_symtabs,
+ const char *name,
+ VEC (symbolp) **symbols,
+ VEC (minsym_and_objfile_d) **minsyms);
static struct line_offset
linespec_parse_variable (struct linespec_state *self,
@@ -2948,7 +2948,7 @@ find_function_symbols (struct linespec_state *state,
/* Find all symbols named NAME in FILE_SYMTABS, returning debug symbols
in SYMBOLS and minimal symbols in MINSYMS. */
-void
+static void
find_linespec_symbols (struct linespec_state *state,
VEC (symtab_p) *file_symtabs,
const char *name,