diff options
author | Alan Modra <amodra@gmail.com> | 2003-06-24 14:04:29 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2003-06-24 14:04:29 +0000 |
commit | 7e5d8d48edd24851f2148bbf1032f7f137120cd1 (patch) | |
tree | ad33ae4a6cc58dddb47b0f5e6dd17e985352250e /ld/emultempl | |
parent | 55fd94b056a2db8d1a530ed2db648579bb8c586c (diff) | |
download | gdb-7e5d8d48edd24851f2148bbf1032f7f137120cd1.zip gdb-7e5d8d48edd24851f2148bbf1032f7f137120cd1.tar.gz gdb-7e5d8d48edd24851f2148bbf1032f7f137120cd1.tar.bz2 |
* emultempl/ppc32elf.em: Convert to C90.
Diffstat (limited to 'ld/emultempl')
-rw-r--r-- | ld/emultempl/ppc32elf.em | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/ld/emultempl/ppc32elf.em b/ld/emultempl/ppc32elf.em index fbe1782..4614593 100644 --- a/ld/emultempl/ppc32elf.em +++ b/ld/emultempl/ppc32elf.em @@ -29,10 +29,8 @@ cat >>e${EMULATION_NAME}.c <<EOF /* Whether to run tls optimization. */ static int notlsopt = 0; -static void ppc_before_allocation PARAMS ((void)); - static void -ppc_before_allocation () +ppc_before_allocation (void) { extern const bfd_target bfd_elf32_powerpc_vec; extern const bfd_target bfd_elf32_powerpcle_vec; |