diff options
author | Daniel Jacobowitz <drow@false.org> | 2008-07-15 19:11:34 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2008-07-15 19:11:34 +0000 |
commit | 7f0df27888b662a1b4800036cb0f0fa266f297d5 (patch) | |
tree | f88741f440a0af5d5a3a33d364b2a135656e7a5e /gdb/block.h | |
parent | 54af988d1e631ef9f44c83cc23cbc33bdcf12cf5 (diff) | |
download | gdb-7f0df27888b662a1b4800036cb0f0fa266f297d5.zip gdb-7f0df27888b662a1b4800036cb0f0fa266f297d5.tar.gz gdb-7f0df27888b662a1b4800036cb0f0fa266f297d5.tar.bz2 |
* block.c (block_function): Renamed to ...
(block_linkage_function): ... this. All callers changed.
* block.h (block_function): Renamed to ...
(block_linkage_function): ... this.
Diffstat (limited to 'gdb/block.h')
-rw-r--r-- | gdb/block.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/block.h b/gdb/block.h index db0644c..1e04985 100644 --- a/gdb/block.h +++ b/gdb/block.h @@ -132,7 +132,7 @@ struct blockvector enum { GLOBAL_BLOCK = 0, STATIC_BLOCK = 1, FIRST_LOCAL_BLOCK = 2 }; -extern struct symbol *block_function (const struct block *); +extern struct symbol *block_linkage_function (const struct block *); extern int contained_in (const struct block *, const struct block *); |