Skip to content

Commit f6dd2d2

Browse files
committed
core: fix libc linux fallout from 2db3abd
1 parent 2db3abd commit f6dd2d2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/libcore/libc.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -313,9 +313,9 @@ pub mod types {
313313
}
314314
pub mod posix01 {
315315
use libc::types::os::arch::c95::{c_int, c_long, time_t};
316-
use libc::consts::os::arch::posix88::{dev_t, gid_t, ino_t};
317-
use libc::consts::os::arch::posix98::{mode_t, off_t};
318-
use libc::consts::os::arch::posix98::{uid_t};
316+
use libc::types::os::arch::posix88::{dev_t, gid_t, ino_t};
317+
use libc::types::os::arch::posix88::{mode_t, off_t};
318+
use libc::types::os::arch::posix88::{uid_t};
319319

320320
pub type nlink_t = u64;
321321
pub type blksize_t = i64;

0 commit comments

Comments
 (0)