Skip to content

Commit dff7676

Browse files
committed
Fix MIPS build errors in libstd/os/linux/raw.rs
1 parent 4356220 commit dff7676

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libstd/os/linux/raw.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ mod arch {
6060
#[cfg(any(target_arch = "mips",
6161
target_arch = "mipsel"))]
6262
mod arch {
63-
use super::{dev_t, mode_t};
64-
use os::raw::c_long;
63+
use super::mode_t;
64+
use os::raw::{c_long, c_ulong};
6565
use os::unix::raw::{gid_t, uid_t};
6666

6767
pub type blkcnt_t = i32;

0 commit comments

Comments
 (0)