diff options
author | Elliott Hughes <enh@google.com> | 2013-10-01 15:30:40 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2013-10-01 15:30:40 +0000 |
commit | f281fd02e9eebea3de9c07412c5b66647ca0c290 (patch) | |
tree | ca234c3fee208aae87b1b4a05f66b06b3c4d295c /libc/bionic | |
parent | 693bd73fcdf1504e84aef314d1933f5efc2c817d (diff) | |
parent | 01a700e5d2ee9b5bd61546faffcb453fd1d6325c (diff) | |
download | bionic-f281fd02e9eebea3de9c07412c5b66647ca0c290.zip bionic-f281fd02e9eebea3de9c07412c5b66647ca0c290.tar.gz bionic-f281fd02e9eebea3de9c07412c5b66647ca0c290.tar.bz2 |
Merge "Better statfs/fstatfs glibc compatibility."
Diffstat (limited to 'libc/bionic')
-rw-r--r-- | libc/bionic/statvfs.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libc/bionic/statvfs.cpp b/libc/bionic/statvfs.cpp index 743e4fd..5d58281 100644 --- a/libc/bionic/statvfs.cpp +++ b/libc/bionic/statvfs.cpp @@ -23,10 +23,6 @@ extern "C" int __fstatfs64(int, size_t, struct statfs*); #define ST_VALID 0x0020 -#if !defined(__arm__) -#define __val val -#endif - static void __statfs_to_statvfs(const struct statfs& in, struct statvfs* out) { out->f_bsize = in.f_bsize; out->f_frsize = in.f_frsize; |