From 7920ce38c3e43d462e360b21db6cc9c17a40b4f4 Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Thu, 21 Apr 2005 07:45:39 +0000 Subject: Update to ISO-C90 and fix formatting --- bfd/nlm.c | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) (limited to 'bfd/nlm.c') diff --git a/bfd/nlm.c b/bfd/nlm.c index 7a0a35e..ed2614e 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); -- cgit v1.1