1Index: libc/src/lib.rs 2=================================================================== 3--- libc.orig/src/lib.rs 4+++ libc/src/lib.rs 5@@ -30,6 +30,9 @@ 6 #![cfg_attr(target_os = "redox", feature(static_nobundle))] 7 #![cfg_attr(libc_const_extern_fn, feature(const_extern_fn))] 8 9+// ANDROID: Use std to allow building as a dylib. 10+extern crate std; 11+ 12 #[macro_use] 13 mod macros; 14 15