diff options
Diffstat (limited to 'src/unexec.c')
-rw-r--r-- | src/unexec.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/unexec.c b/src/unexec.c index d1921069af7..a1bb5460d3c 100644 --- a/src/unexec.c +++ b/src/unexec.c @@ -630,7 +630,6 @@ mark_x (name) PERROR (name); } -#ifndef COFF_BSD_SYMBOLS /* * If the COFF file contains a symbol table and a line number section, @@ -699,8 +698,6 @@ adjust_lnnoptrs (writedesc, readdesc, new_name) return 0; } -#endif /* COFF_BSD_SYMBOLS */ - /* **************************************************************** * unexec * @@ -724,9 +721,7 @@ unexec (new_name, a_name, data_start, bss_start, entry_address) if (make_hdr (new, a_out, data_start, bss_start, entry_address, a_name, new_name) < 0 || copy_text_and_data (new, a_out) < 0 || copy_sym (new, a_out, a_name, new_name) < 0 -#ifndef COFF_BSD_SYMBOLS || adjust_lnnoptrs (new, a_out, new_name) < 0 -#endif ) { close (new); |