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/aout-encap.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/aout-encap.c')
-rw-r--r-- | bfd/aout-encap.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/bfd/aout-encap.c b/bfd/aout-encap.c index 722dae6..20c44bf 100644 --- a/bfd/aout-encap.c +++ b/bfd/aout-encap.c @@ -1,5 +1,5 @@ /* BFD back-end for a.out files encapsulated with COFF headers. - Copyright (C) 1990-1991 Free Software Foundation, Inc. + Copyright (C) 1990, 1991 Free Software Foundation, Inc. This file is part of BFD, the Binary File Descriptor library. @@ -38,8 +38,8 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ bfd_target *encap_real_callback (); bfd_target * -DEFUN(encap_object_p,(abfd), - bfd *abfd) +encap_object_p (abfd) + bfd *abfd; { unsigned char magicbuf[4]; /* Raw bytes of magic number from file */ unsigned long magic; /* Swapped magic number */ @@ -77,8 +77,8 @@ DEFUN(encap_object_p,(abfd), /* Finish up the reading of a encapsulated-coff a.out file header */ bfd_target * -DEFUN(encap_real_callback,(abfd), - bfd *abfd) +encap_real_callback (abfd) + bfd *abfd; { struct internal_exec *execp = exec_hdr (abfd); @@ -118,8 +118,8 @@ DEFUN(encap_real_callback,(abfd), file header, symbols, and relocation. */ boolean -DEFUN(encap_write_object_contents,(abfd), - bfd *abfd) +encap_write_object_contents (abfd) + bfd *abfd; { bfd_size_type data_pad = 0; struct external_exec exec_bytes; |