diff options
author | David MacKenzie <djm@cygnus> | 1994-03-15 15:13:13 +0000 |
---|---|---|
committer | David MacKenzie <djm@cygnus> | 1994-03-15 15:13:13 +0000 |
commit | 57a1867e6c8713e9e5e86f933e6b416688b43e34 (patch) | |
tree | a228f1bdbccf2ffc7d14ff5eb8db25b551b108e9 /bfd/ctor.c | |
parent | baef2065d089cf8bf5bff6cd29699b65836cb3c6 (diff) | |
download | gdb-57a1867e6c8713e9e5e86f933e6b416688b43e34.zip gdb-57a1867e6c8713e9e5e86f933e6b416688b43e34.tar.gz gdb-57a1867e6c8713e9e5e86f933e6b416688b43e34.tar.bz2 |
* Most files:
Replace DEFUN and DEFUN_VOID with K&R-style function definition.
Indent some of them to GNU standards.
* aout32.c, archures.c, core.c, cpu-h8300.c, cpu-i960.c,
cpu-m68k.c, cpu-m88k.c, cpu-mips.c, cpu-vax.c, ctor.c, demo64.c,
elf32-hppa.h, gen-aout.c, host-aout.c, init.c, libhppa.h,
libieee.h, liboasys.h, newsos3.c, som.h, stab-syms.c, sunos.c:
Update copyright years.
Diffstat (limited to 'bfd/ctor.c')
-rw-r--r-- | bfd/ctor.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,5 +1,5 @@ /* BFD library support routines for constructors - Copyright (C) 1990-1991 Free Software Foundation, Inc. + Copyright (C) 1990, 91, 92, 93, 94 Free Software Foundation, Inc. Hacked by Steve Chamberlain of Cygnus Support. With some help from Judy Chamberlain too. @@ -115,10 +115,10 @@ DESCRIPTION boolean -DEFUN(bfd_constructor_entry,(abfd, symbol_ptr_ptr, type), - bfd *abfd AND - asymbol **symbol_ptr_ptr AND - CONST char *type) +bfd_constructor_entry (abfd, symbol_ptr_ptr, type) + bfd *abfd; + asymbol **symbol_ptr_ptr; + CONST char *type; { /* Look up the section we're using to store the table in */ asection *rel_section = bfd_get_section_by_name (abfd, type); |