diff options
author | Carmelo Amoroso <carmelo.amoroso@st.com> | 2010-09-24 09:02:41 +0200 |
---|---|---|
committer | Carmelo Amoroso <carmelo.amoroso@st.com> | 2010-09-24 09:02:41 +0200 |
commit | 8d29ef117dba66ab67419a69d272779d50f147f0 (patch) | |
tree | a8df75081898112b27252393792156124c89a84c /libc/sysdeps/linux/common/statfs.c | |
parent | b9766aa08c90b6718d5497d6a6cf9e6f737e5141 (diff) | |
parent | 74407db52d3953c7f3c6b8a53661cfc96cb07e22 (diff) |
Merge commit 'origin/master' into prelink
Conflicts:
ldso/ldso/sh/elfinterp.c
Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
Diffstat (limited to 'libc/sysdeps/linux/common/statfs.c')
-rw-r--r-- | libc/sysdeps/linux/common/statfs.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/common/statfs.c b/libc/sysdeps/linux/common/statfs.c index 2f8548d0d..d24bc9d0c 100644 --- a/libc/sysdeps/linux/common/statfs.c +++ b/libc/sysdeps/linux/common/statfs.c @@ -16,6 +16,7 @@ extern __typeof(statfs) __libc_statfs attribute_hidden; #define __NR___libc_statfs __NR_statfs _syscall2(int, __libc_statfs, const char *, path, struct statfs *, buf) -#if defined __UCLIBC_LINUX_SPECIFIC__ +#if defined __UCLIBC_LINUX_SPECIFIC__ || defined __UCLIBC_HAS_THREADS_NATIVE__ +/* statfs is used by NPTL, so it must exported in case */ weak_alias(__libc_statfs,statfs) #endif |