diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-07-05 17:36:34 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-07-05 17:36:34 +0000 |
commit | 2dd18ce2b2dfecc737479548f5b6d1784d90fe79 (patch) | |
tree | 58de42856e6e475536f8c8304168478ebeab0b62 /sysdeps/alpha | |
parent | 9b9ef823581ecee546653d6ac3fd335f7b79faca (diff) | |
download | glibc-2dd18ce2b2dfecc737479548f5b6d1784d90fe79.tar glibc-2dd18ce2b2dfecc737479548f5b6d1784d90fe79.tar.gz glibc-2dd18ce2b2dfecc737479548f5b6d1784d90fe79.tar.bz2 glibc-2dd18ce2b2dfecc737479548f5b6d1784d90fe79.zip |
Update.
* include/string.h (ffs): Add libc_hidden_builtin_proto.
* sysdeps/rs6000/ffs.c (ffs): Add libc_hidden_builtin_def.
* sysdeps/alpha/alphaev67/ffs.S (ffs): Likewise.
* sysdeps/alpha/ffs.S (ffs): Likewise.
* sysdeps/s390/ffs.c (ffs): Likewise.
* sysdeps/powerpc/ffs.c (ffs): Likewise.
* sysdeps/i386/ffs.c (ffs): Likewise.
* sysdeps/i386/i686/ffs.c (ffs): Likewise.
* sysdeps/m68k/ffs.c (ffs): Likewise.
* sysdeps/generic/ffs.c (ffs): Likewise.
* sysdeps/m88k/ffs.c (ffs): Likewise.
* sysdeps/am29k/ffs.c (ffs): Likewise.
* sysdeps/i960/ffs.c (ffs): Likewise.
* sysdeps/x86_64/ffs.c (ffs): Likewise.
* Makerules (check-abi): Use diff -p -U 0 instead of diff -pu0.
Diffstat (limited to 'sysdeps/alpha')
-rw-r--r-- | sysdeps/alpha/alphaev67/ffs.S | 3 | ||||
-rw-r--r-- | sysdeps/alpha/ffs.S | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/sysdeps/alpha/alphaev67/ffs.S b/sysdeps/alpha/alphaev67/ffs.S index 6d87008988..fb1cdd932c 100644 --- a/sysdeps/alpha/alphaev67/ffs.S +++ b/sysdeps/alpha/alphaev67/ffs.S @@ -1,4 +1,4 @@ -/* Copyright (C) 2000 Free Software Foundation, Inc. +/* Copyright (C) 2000, 2004 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -48,3 +48,4 @@ ENTRY(__ffs) END(__ffs) weak_alias (__ffs, ffs) +libc_hidden_builtin_def (ffs) diff --git a/sysdeps/alpha/ffs.S b/sysdeps/alpha/ffs.S index c73d822841..5f2074ee7c 100644 --- a/sysdeps/alpha/ffs.S +++ b/sysdeps/alpha/ffs.S @@ -1,4 +1,4 @@ -/* Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc. +/* Copyright (C) 1996, 1997, 1998, 2004 Free Software Foundation, Inc. Contributed by David Mosberger (davidm@cs.arizona.edu). This file is part of the GNU C Library. @@ -86,5 +86,6 @@ $ffsl..ng: END(ffsl) weak_alias (__ffs, ffs) +libc_hidden_builtin_def (ffs) weak_extern (ffsl) weak_alias (ffsl, ffsll) |