diff options
-rw-r--r-- | ChangeLog | 10 | ||||
-rw-r--r-- | sysdeps/sparc/sparc64/jmpbuf-unwind.h | 1 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/fxstatat.c | 1 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/i386/fxstatat.c | 1 |
4 files changed, 12 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 93d6c26bd1..7ed1c69a68 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +2006-01-31 Jakub Jelinek <jakub@redhat.com> + + * sysdeps/unix/sysv/linux/i386/fxstatat.c [XSTAT_IS_STAT64] + (__fxstatat64): Add libc_hidden_ver. + * sysdeps/unix/sysv/linux/fxstatat.c [XSTAT_IS_STAT64] (__fxstatat64): + Likewise. + + * sysdeps/sparc/sparc64/jmpbuf-unwind.h: Remove jmpbuf-offsets.h + include. + 2006-01-31 Roland McGrath <roland@redhat.com> * sysdeps/powerpc/fpu/libm-test-ulps: Update by Jakub. diff --git a/sysdeps/sparc/sparc64/jmpbuf-unwind.h b/sysdeps/sparc/sparc64/jmpbuf-unwind.h index b7e327d0f6..f7eed15ea1 100644 --- a/sysdeps/sparc/sparc64/jmpbuf-unwind.h +++ b/sysdeps/sparc/sparc64/jmpbuf-unwind.h @@ -18,7 +18,6 @@ 02111-1307 USA. */ #include <setjmp.h> -#include <jmpbuf-offsets.h> #include <stdint.h> #include <unwind.h> diff --git a/sysdeps/unix/sysv/linux/fxstatat.c b/sysdeps/unix/sysv/linux/fxstatat.c index c73037b805..77debf71d3 100644 --- a/sysdeps/unix/sysv/linux/fxstatat.c +++ b/sysdeps/unix/sysv/linux/fxstatat.c @@ -105,4 +105,5 @@ __fxstatat (int vers, int fd, const char *file, struct stat *st, int flag) #ifdef XSTAT_IS_XSTAT64 # undef __fxstatat64 strong_alias (__fxstatat, __fxstatat64); +libc_hidden_ver (__fxstatat, __fxstatat64) #endif diff --git a/sysdeps/unix/sysv/linux/i386/fxstatat.c b/sysdeps/unix/sysv/linux/i386/fxstatat.c index d982cfb454..65fab5179c 100644 --- a/sysdeps/unix/sysv/linux/i386/fxstatat.c +++ b/sysdeps/unix/sysv/linux/i386/fxstatat.c @@ -149,4 +149,5 @@ __fxstatat (int vers, int fd, const char *file, struct stat *st, int flag) #ifdef XSTAT_IS_XSTAT64 # undef __fxstatat64 strong_alias (__fxstatat, __fxstatat64); +libc_hidden_ver (__fxstatat, __fxstatat64) #endif |