diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2006-01-16 18:29:52 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2006-01-16 18:29:52 +0000 |
commit | 15868f9c3d22fb51b38d7aafd88d95fb2193e734 (patch) | |
tree | fd940f5c633ec4a2d917b91654927c86d28c5f37 /libc/sysdeps/linux/common | |
parent | 4a15cc847eef004276ddaaae4dbb70dd6fb692e1 (diff) |
s/weak_alias/strong_alias/, only what I knew as needed are kept. We will now see what libpthread will do ...
Diffstat (limited to 'libc/sysdeps/linux/common')
-rw-r--r-- | libc/sysdeps/linux/common/lstat.c | 2 | ||||
-rw-r--r-- | libc/sysdeps/linux/common/stat.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libc/sysdeps/linux/common/lstat.c b/libc/sysdeps/linux/common/lstat.c index b654a8fb1..f92750c5d 100644 --- a/libc/sysdeps/linux/common/lstat.c +++ b/libc/sysdeps/linux/common/lstat.c @@ -7,7 +7,7 @@ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. */ -/* need to hide the 64bit prototype or the weak_alias() +/* need to hide the 64bit prototype or the strong_alias() * will fail when __NR_lstat64 doesnt exist */ #define lstat64 __hidelstat64 diff --git a/libc/sysdeps/linux/common/stat.c b/libc/sysdeps/linux/common/stat.c index aeb9f16db..cc5e8fdb5 100644 --- a/libc/sysdeps/linux/common/stat.c +++ b/libc/sysdeps/linux/common/stat.c @@ -7,7 +7,7 @@ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. */ -/* need to hide the 64bit prototype or the weak_alias() +/* need to hide the 64bit prototype or the strong_alias() * will fail when __NR_stat64 doesnt exist */ #define stat64 __hidestat64 |