diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-04-27 20:14:37 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-04-27 20:14:37 +0000 |
commit | a5d07eb215256f78193e3ae865d0b462bac775f6 (patch) | |
tree | 0264feb1ea56c09c9f7c396ad59bf1cb3781582c /sysdeps/unix/sysv/linux/ia64/fxstat.c | |
parent | 5f267ab0145f7c7e10f372a398715a0ed8e91c50 (diff) | |
download | glibc-a5d07eb215256f78193e3ae865d0b462bac775f6.tar.gz glibc-a5d07eb215256f78193e3ae865d0b462bac775f6.tar.xz glibc-a5d07eb215256f78193e3ae865d0b462bac775f6.zip |
Update.
2002-04-27 Ulrich Drepper <drepper@redhat.com> * sysdeps/unix/sysv/linux/ia64/fxstat.c: Fix a few issues with the _internal symbol handling. * sysdeps/unix/sysv/linux/ia64/lxstat.c: Likewise.
Diffstat (limited to 'sysdeps/unix/sysv/linux/ia64/fxstat.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/ia64/fxstat.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sysdeps/unix/sysv/linux/ia64/fxstat.c b/sysdeps/unix/sysv/linux/ia64/fxstat.c index 2783c0f7bf..297762e276 100644 --- a/sysdeps/unix/sysv/linux/ia64/fxstat.c +++ b/sysdeps/unix/sysv/linux/ia64/fxstat.c @@ -20,6 +20,10 @@ /* Ho hum, since xstat == xstat64 we must get rid of the prototype or gcc will complain since they don't strictly match. */ #define __fxstat64 __fxstat64_disable +#define __fxstat64_internal __fxstat64_internal_disable +/* To avoid the optimizations of using _internal functions define + NOT_IN_libc. */ +#define NOT_IN_libc 1 #include <errno.h> #include <stddef.h> @@ -32,6 +36,7 @@ extern int __syscall_fstat (int, struct stat *__unbounded); #undef __fxstat +#undef __fxstat64_internal /* Get information about the file FD in BUF. */ int |