diff options
Diffstat (limited to 'gdb/symtab.h')
-rw-r--r-- | gdb/symtab.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gdb/symtab.h b/gdb/symtab.h index d3f6370..86fcf39 100644 --- a/gdb/symtab.h +++ b/gdb/symtab.h @@ -816,6 +816,9 @@ struct symbol struct symbol *hash_next; }; +typedef struct symbol *symbolp; +DEF_VEC_P (symbolp); + /* Several lookup functions return both a symbol and the block in which the symbol is found. This structure is used in these cases. */ @@ -1603,6 +1606,7 @@ int iterate_over_some_symtabs (const char *name, struct compunit_symtab *after_last); void iterate_over_symtabs (const char *name, + VEC (objfilep) *objfiles, int (*callback) (struct symtab *symtab, void *data), void *data); |