diff options
Diffstat (limited to 'sysdeps/am29k/ffs.c')
-rw-r--r-- | sysdeps/am29k/ffs.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/am29k/ffs.c b/sysdeps/am29k/ffs.c index a1a74445c7..6f080db442 100644 --- a/sysdeps/am29k/ffs.c +++ b/sysdeps/am29k/ffs.c @@ -1,6 +1,6 @@ /* ffs -- find first set bit in a word, counted from least significant end. For Amd 290x0. - Copyright (C) 1991, 1992, 1997 Free Software Foundation, Inc. + Copyright (C) 1991, 1992, 1997, 2004 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Torbjorn Granlund (tege@sics.se). @@ -36,6 +36,7 @@ __ffs (x) return 32 - cnt; } weak_alias (__ffs, ffs) +libc_hidden_builtin_def (ffs) #else #include <sysdeps/generic/ffs.c> |