diff options
author | Markos Chandras <markos.chandras@imgtec.com> | 2012-10-11 11:58:30 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2013-02-20 13:45:13 +0100 |
commit | 09e782b088e77eff01e9b08dd0f5dd4896e9d417 (patch) | |
tree | 08b2a637194ddcbe85f212f4f10945a59015fa35 /libc/sysdeps/linux/common/stubs.c | |
parent | 13f56c443b697190373d555b25e2577dcd32a3b6 (diff) |
fstatfs: Add __libc_fstatfs wrapper
New architectures don't have fstatfs anymore, so we use a wrapper for
__libc_fstatfs which will use fstatfs64 internally. The interface however
needs to remain the same (i.e accepting a struct statfs as a second
argument) for backwards compatibility
Signed-off-by: Markos Chandras <markos.chandras@imgtec.com>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libc/sysdeps/linux/common/stubs.c')
-rw-r--r-- | libc/sysdeps/linux/common/stubs.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/common/stubs.c b/libc/sysdeps/linux/common/stubs.c index 36fcc62ba..83bcf47f6 100644 --- a/libc/sysdeps/linux/common/stubs.c +++ b/libc/sysdeps/linux/common/stubs.c @@ -140,7 +140,8 @@ make_stub(fremovexattr) make_stub(fsetxattr) #endif -#if !defined __NR_fstatfs && defined __UCLIBC_LINUX_SPECIFIC__ +#if !defined __NR_fstatfs && !defined __NR_fstatfs64 \ + && defined __UCLIBC_LINUX_SPECIFIC__ make_stub(fstatfs) #endif |