diff options
Diffstat (limited to 'sysdeps/unix/sysv/linux/ia64')
-rw-r--r-- | sysdeps/unix/sysv/linux/ia64/fxstat.c | 11 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/ia64/lxstat.c | 11 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/ia64/xstat.c | 5 |
3 files changed, 7 insertions, 20 deletions
diff --git a/sysdeps/unix/sysv/linux/ia64/fxstat.c b/sysdeps/unix/sysv/linux/ia64/fxstat.c index 297762e276..b402401992 100644 --- a/sysdeps/unix/sysv/linux/ia64/fxstat.c +++ b/sysdeps/unix/sysv/linux/ia64/fxstat.c @@ -20,10 +20,6 @@ /* 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> @@ -35,9 +31,6 @@ extern int __syscall_fstat (int, struct stat *__unbounded); -#undef __fxstat -#undef __fxstat64_internal - /* Get information about the file FD in BUF. */ int __fxstat (int vers, int fd, struct stat *buf) @@ -45,8 +38,8 @@ __fxstat (int vers, int fd, struct stat *buf) return INLINE_SYSCALL (fstat, 2, fd, CHECK_1 (buf)); } -INTDEF(__fxstat) +hidden_def (__fxstat) weak_alias (__fxstat, _fxstat); #undef __fxstat64 strong_alias (__fxstat, __fxstat64); -INTDEF(__fxstat64) +hidden_ver (__fxstat, __fxstat64) diff --git a/sysdeps/unix/sysv/linux/ia64/lxstat.c b/sysdeps/unix/sysv/linux/ia64/lxstat.c index 19f9af0259..97b3a24e01 100644 --- a/sysdeps/unix/sysv/linux/ia64/lxstat.c +++ b/sysdeps/unix/sysv/linux/ia64/lxstat.c @@ -20,10 +20,6 @@ /* Ho hum, since xstat == xstat64 we must get rid of the prototype or gcc will complain since they don't strictly match. */ #define __lxstat64 __lxstat64_disable -#define __lxstat64_internal __lxstat64_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> @@ -33,9 +29,6 @@ #include <sys/syscall.h> #include <bp-checks.h> -#undef __lxstat -#undef __lxstat64_internal - extern int __syscall_lstat (const char *__unbounded, struct stat *__unbounded); /* Get information about the file FD in BUF. */ @@ -45,8 +38,8 @@ __lxstat (int vers, const char *name, struct stat *buf) return INLINE_SYSCALL (lstat, 2, CHECK_STRING (name), CHECK_1 (buf)); } -INTDEF(__lxstat) +hidden_def (__lxstat) weak_alias (__lxstat, _lxstat); #undef __lxstat64 strong_alias (__lxstat, __lxstat64); -INTDEF(__lxstat64) +hidden_ver (__lxstat, __lxstat64) diff --git a/sysdeps/unix/sysv/linux/ia64/xstat.c b/sysdeps/unix/sysv/linux/ia64/xstat.c index f8cdd86d26..63d1192efb 100644 --- a/sysdeps/unix/sysv/linux/ia64/xstat.c +++ b/sysdeps/unix/sysv/linux/ia64/xstat.c @@ -1,5 +1,5 @@ /* xstat using old-style Unix stat system call. - Copyright (C) 1991, 95, 96, 97, 98, 2000 Free Software Foundation, Inc. + Copyright (C) 1991,95,96,97,98,2000,2002 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 @@ -37,7 +37,8 @@ __xstat (int vers, const char *name, struct stat *buf) { return INLINE_SYSCALL (stat, 2, name, CHECK_1 (buf)); } - +hidden_def (__xstat) weak_alias (__xstat, _xstat); #undef __xstat64 strong_alias (__xstat, __xstat64); +hidden_ver (__xstat, __xstat64) |