summary refs log tree commit diff
path: root/sysdeps/unix/common/lxstat.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/unix/common/lxstat.c')
-rw-r--r--sysdeps/unix/common/lxstat.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sysdeps/unix/common/lxstat.c b/sysdeps/unix/common/lxstat.c
index 978da1bbda..98bea40a7e 100644
--- a/sysdeps/unix/common/lxstat.c
+++ b/sysdeps/unix/common/lxstat.c
@@ -1,5 +1,5 @@
 /* lxstat using old-style Unix lstat system call.
-   Copyright (C) 1991, 1995, 1996, 1997, 2000 Free Software Foundation, Inc.
+   Copyright (C) 1991,1995,1996,1997,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
@@ -22,6 +22,8 @@
 #include <sys/stat.h>
 #include <bp-checks.h>
 
+#undef __lxstat
+
 extern int __syscall_lstat (const char *__unbounded, struct stat *__unbounded);
 
 int
@@ -35,4 +37,5 @@ __lxstat (int vers, const char *file, struct stat *buf)
 
   return __syscall_lstat (CHECK_STRING (file), CHECK_1 (buf));
 }
+INTDEF(__lxstat)
 weak_alias (__lxstat, _lxstat)