diff options
author | Ben Elliston <bje@au.ibm.com> | 2005-04-28 23:54:33 +0000 |
---|---|---|
committer | Ben Elliston <bje@au.ibm.com> | 2005-04-28 23:54:33 +0000 |
commit | 279e75dcef1313cc67233e11c43ec6538cb8706f (patch) | |
tree | 6640866e1add13c0e36d228a76264e3f2dc8b1cc /ld/ldlang.c | |
parent | f07e55f031dad1c65dfe580853117375e50c3a56 (diff) | |
download | gdb-279e75dcef1313cc67233e11c43ec6538cb8706f.zip gdb-279e75dcef1313cc67233e11c43ec6538cb8706f.tar.gz gdb-279e75dcef1313cc67233e11c43ec6538cb8706f.tar.bz2 |
* ldgram.y (lang_memory_region_type): Make static.
(ldgram_want_filename): Likewise.
* ldemul.c (ld_emulation): Make static.
* ldfile.h (ldfile_find_command_file): Remove extern.
* ldfile.c (ldfile_find_command_file): Make static.
* ldlang.h (unique_section_list): Remove extern declaration.
* ldlang.c (unique_section_list): Make static.
* mri.h (symbol_truncate): Remove extern declaration.
* mri.c (symbol_truncate): Make static.
(order, only_load, address, alias): Likewise.
(alignment, subalignment): Likewise.
Diffstat (limited to 'ld/ldlang.c')
-rw-r--r-- | ld/ldlang.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ld/ldlang.c b/ld/ldlang.c index 3e7a78c..2568fed 100644 --- a/ld/ldlang.c +++ b/ld/ldlang.c @@ -97,7 +97,7 @@ bfd_boolean had_output_filename = FALSE; bfd_boolean lang_float_flag = FALSE; bfd_boolean delete_output_file_on_failure = FALSE; struct lang_nocrossrefs *nocrossref_list; -struct unique_sections *unique_section_list; +static struct unique_sections *unique_section_list; static bfd_boolean ldlang_sysrooted_script = FALSE; int lang_statement_iteration = 0; |