diff options
Diffstat (limited to 'sysdeps/powerpc/ffs.c')
-rw-r--r-- | sysdeps/powerpc/ffs.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/powerpc/ffs.c b/sysdeps/powerpc/ffs.c index 2ae12e6338..fb1b2f4592 100644 --- a/sysdeps/powerpc/ffs.c +++ b/sysdeps/powerpc/ffs.c @@ -1,6 +1,6 @@ /* Find first set bit in a word, counted from least significant end. For PowerPC. - Copyright (C) 1991, 1992, 1997 Free Software Foundation, Inc. + Copyright (C) 1991, 1992, 1997, 1998 Free Software Foundation, Inc. Contributed by Torbjorn Granlund (tege@sics.se). The GNU C Library is free software; you can redistribute it and/or @@ -29,3 +29,4 @@ __ffs (int x) return 32 - cnt; } weak_alias (__ffs, ffs) +weak_alais (__ffs, ffsl) |