diff options
author | Nick Clifton <nickc@redhat.com> | 2005-04-21 07:45:39 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2005-04-21 07:45:39 +0000 |
commit | cb4008b247afbdda62c06477a93fca02b2a24afa (patch) | |
tree | 0b294d75fdff831a33bf883e9be460d07a331816 /bfd/nlm.c | |
parent | f24c5ad99442811b10baa02db0193cb093fa1596 (diff) | |
download | gdb-cb4008b247afbdda62c06477a93fca02b2a24afa.tar.gz |
Update to ISO-C90 and fix formatting
Diffstat (limited to 'bfd/nlm.c')
-rw-r--r-- | bfd/nlm.c | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/bfd/nlm.c b/bfd/nlm.c index 7a0a35ee154..ed2614e340b 100644 --- a/bfd/nlm.c +++ b/bfd/nlm.c @@ -1,21 +1,22 @@ /* NLM (NetWare Loadable Module) executable support for BFD. - Copyright 1993, 1994, 2001, 2002, 2003 Free Software Foundation, Inc. + Copyright 1993, 1994, 2001, 2002, 2003, 2005 + Free Software Foundation, Inc. -This file is part of BFD, the Binary File Descriptor library. + This file is part of BFD, the Binary File Descriptor library. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software -Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "bfd.h" #include "sysdep.h" @@ -26,11 +27,11 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ information. */ bfd_boolean -nlm_mkobject (abfd) - bfd * abfd; +nlm_mkobject (bfd * abfd) { bfd_size_type amt = sizeof (struct nlm_obj_tdata); - nlm_tdata (abfd) = (struct nlm_obj_tdata *) bfd_zalloc (abfd, amt); + + nlm_tdata (abfd) = bfd_zalloc (abfd, amt); if (nlm_tdata (abfd) == NULL) return FALSE; @@ -38,17 +39,16 @@ nlm_mkobject (abfd) bfd_default_set_arch_mach (abfd, nlm_architecture (abfd), nlm_machine (abfd)); - /* since everything is done at close time, do we need any initialization? */ + /* Since everything is done at close time, do we need any initialization ? */ return TRUE; } /* Set the architecture and machine for an NLM object. */ bfd_boolean -nlm_set_arch_mach (abfd, arch, machine) - bfd * abfd; - enum bfd_architecture arch; - unsigned long machine; +nlm_set_arch_mach (bfd * abfd, + enum bfd_architecture arch, + unsigned long machine) { bfd_default_set_arch_mach (abfd, arch, machine); return arch == nlm_architecture (abfd); |