diff options
Diffstat (limited to 'sysdeps/unix/sysv/linux/ia64/xstat.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/ia64/xstat.c | 5 |
1 files changed, 3 insertions, 2 deletions
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) |