commit | 6df961257d584714c5690b1f4197c677e4f832ec | [log] [tgz] |
---|---|---|
author | Chris Renshaw <osm0sis@outlook.com> | Thu Dec 17 16:42:01 2015 +0100 |
committer | Denys Vlasenko <vda.linux@googlemail.com> | Thu Dec 17 16:42:41 2015 +0100 |
tree | ff33f9a5fb3f68338dd4e737cbd4b8bd4546aae9 | |
parent | e0942acb9e186cbfc16afe704e10a8af9cd1cc58 [diff] [blame] |
Resolve linker issues with Android API 21 (dprintf, tcdrain) Signed-off-by: Chris Renshaw <osm0sis@outlook.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
diff --git a/libbb/missing_syscalls.c b/libbb/missing_syscalls.c index e3c1e92..0934128 100644 --- a/libbb/missing_syscalls.c +++ b/libbb/missing_syscalls.c
@@ -40,8 +40,10 @@ return syscall(__NR_pivot_root, new_root, put_old); } +# if __ANDROID_API__ < 21 int tcdrain(int fd) { return ioctl(fd, TCSBRK, 1); } +# endif #endif