diff options
| author | Overmind JIANG <p90eri@gmail.com> | 2015-08-24 08:20:32 +0800 |
|---|---|---|
| committer | Overmind JIANG <p90eri@gmail.com> | 2015-08-24 08:20:32 +0800 |
| commit | 6887d8cdabbba06b55c2c27206e10d6f0099eee8 (patch) | |
| tree | 42720302493ac4c10b1138eef5be3fbe505cba9d /src | |
| parent | 6a7ed8f97a75565078bf7a2971ab810032a3591e (diff) | |
| download | rust-6887d8cdabbba06b55c2c27206e10d6f0099eee8.tar.gz rust-6887d8cdabbba06b55c2c27206e10d6f0099eee8.zip | |
i686-linux-android: Removing useless cfgs.
That line is in a `#[cfg(target_os = "macos")]` block..
Diffstat (limited to 'src')
| -rw-r--r-- | src/liblibc/lib.rs | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/liblibc/lib.rs b/src/liblibc/lib.rs index 6f5c3e27347..2acae38ce93 100644 --- a/src/liblibc/lib.rs +++ b/src/liblibc/lib.rs @@ -996,12 +996,7 @@ pub mod types { pub mod posix88 { pub type off_t = i64; pub type dev_t = u32; - - #[cfg(target_os = "android")] - pub type ino_t = u64; - #[cfg(not(target_os = "android"))] pub type ino_t = u32; - pub type pid_t = i32; pub type uid_t = u32; pub type gid_t = u32; |
