aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/m88k/ffs.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1997-05-26 22:28:25 +0000
committerUlrich Drepper <drepper@redhat.com>1997-05-26 22:28:25 +0000
commit1bf0f668e67d376ffe04db565a1de3d4ff3057f3 (patch)
tree2af60420b54d7e5e8159d5af28adf45113b70a3b /sysdeps/m88k/ffs.c
parentb5fba1adf74a976d2d0151fca9f3250b7dc7f286 (diff)
downloadglibc-1bf0f668e67d376ffe04db565a1de3d4ff3057f3.tar
glibc-1bf0f668e67d376ffe04db565a1de3d4ff3057f3.tar.gz
glibc-1bf0f668e67d376ffe04db565a1de3d4ff3057f3.tar.bz2
glibc-1bf0f668e67d376ffe04db565a1de3d4ff3057f3.zip
De-ansidecl-fy.
Diffstat (limited to 'sysdeps/m88k/ffs.c')
-rw-r--r--sysdeps/m88k/ffs.c31
1 files changed, 16 insertions, 15 deletions
diff --git a/sysdeps/m88k/ffs.c b/sysdeps/m88k/ffs.c
index effca9a0d2..3658f0882d 100644
--- a/sysdeps/m88k/ffs.c
+++ b/sysdeps/m88k/ffs.c
@@ -1,24 +1,24 @@
/* ffs -- find first set bit in a word, counted from least significant end.
For Motorola 88000.
- Copyright (C) 1991, 1992 Free Software Foundation, Inc.
+ This file is part of the GNU C Library.
+ Copyright (C) 1991, 1992, 1997 Free Software Foundation, Inc.
Contributed by Torbjorn Granlund (tege@sics.se).
-The GNU C Library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Library General Public License as
-published by the Free Software Foundation; either version 2 of the
-License, or (at your option) any later version.
+ The GNU C Library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Library General Public License as
+ published by the Free Software Foundation; either version 2 of the
+ License, or (at your option) any later version.
-The GNU C Library 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
-Library General Public License for more details.
+ The GNU C Library 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
+ Library General Public License for more details.
-You should have received a copy of the GNU Library General Public
-License along with the GNU C Library; see the file COPYING.LIB. If
-not, write to the Free Software Foundation, Inc., 675 Mass Ave,
-Cambridge, MA 02139, USA. */
+ You should have received a copy of the GNU Library General Public
+ License along with the GNU C Library; see the file COPYING.LIB. If not,
+ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ Boston, MA 02111-1307, USA. */
-#include <ansidecl.h>
#include <bstring.h>
#undef ffs
@@ -26,7 +26,8 @@ Cambridge, MA 02139, USA. */
#ifdef __GNUC__
int
-DEFUN(ffs, (x), int x)
+ffs (x)
+ int x;
{
int cnt;