aboutsummaryrefslogtreecommitdiff
path: root/io/lstat.c
diff options
context:
space:
mode:
Diffstat (limited to 'io/lstat.c')
-rw-r--r--io/lstat.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/io/lstat.c b/io/lstat.c
index 356001d..6024280 100644
--- a/io/lstat.c
+++ b/io/lstat.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1996, 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1996, 1997, 2001 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
@@ -45,3 +45,10 @@ __lstat (const char *file, struct stat *buf)
}
weak_alias (__lstat, lstat)
+
+/* Hide the symbol so that no definition but the one locally in the
+ executable or DSO is used. */
+#ifdef HAVE_DOT_HIDDEN
+asm (".hidden\tlstat");
+asm (".hidden\t__lstat");
+#endif