Skip to content

Commit 9e02dde

Browse files
committed
Rollup merge of #22792 - semarie:openbsd-unbreak-nacl, r=alexcrichton
The recent commit on liblibc for nacl break the compilation for OpenBSD (and Bitrig too, I think). The problem is `ino_t` come from another block too now. This patch remove the extra declaration. ``` .../src/liblibc/lib.rs:98:9: 98:37 error: a type named `ino_t` has already been imported in this module [E0251] .../src/liblibc/lib.rs:98 pub use types::os::arch::posix01::*; ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ error: aborting due to previous error ``` @dhuseby do you have this problem too ? and if yes, does this patch correct it ?
2 parents 10b67d7 + cfa086b commit 9e02dde

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/liblibc/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1362,7 +1362,6 @@ pub mod types {
13621362
use types::os::arch::c95::{c_long};
13631363
pub type off_t = i64;
13641364
pub type dev_t = i32;
1365-
pub type ino_t = u64;
13661365
pub type pid_t = i32;
13671366
pub type uid_t = u32;
13681367
pub type gid_t = u32;

0 commit comments

Comments
 (0)