Formerly m68k/ffs.c.~3~

This commit is contained in:
Roland McGrath 1992-03-11 23:10:11 +00:00
parent a8ca560a49
commit f92ed3b272
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
/* ffs -- find first set bit in a word, counted from least significant end. /* ffs -- find first set bit in a word, counted from least significant end.
For mc68020, mc68030, mc68040. For mc68020, mc68030, mc68040.
Copyright (C) 1991 Free Software Foundation, Inc. Copyright (C) 1991, 1992 Free Software Foundation, Inc.
Contributed by Torbjorn Granlund (tege@sics.se). Contributed by Torbjorn Granlund (tege@sics.se).
The GNU C Library is free software; you can redistribute it and/or The GNU C Library is free software; you can redistribute it and/or
@ -23,7 +23,7 @@ Cambridge, MA 02139, USA. */
#undef ffs #undef ffs
#if defined(__mc68020__) || defined(mc68020) #if defined (__GNUC__) && defined (__mc68020__)
int int
DEFUN(ffs, (x), int x) DEFUN(ffs, (x), int x)