summaryrefslogtreecommitdiff
path: root/src/sys/mman.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/sys/mman.rs')
-rw-r--r--src/sys/mman.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/sys/mman.rs b/src/sys/mman.rs
index dfa46264..5a5dd89e 100644
--- a/src/sys/mman.rs
+++ b/src/sys/mman.rs
@@ -1,12 +1,12 @@
-use {Error, Result};
+use crate::{Error, Result};
#[cfg(not(target_os = "android"))]
-use NixPath;
-use errno::Errno;
+use crate::NixPath;
+use crate::errno::Errno;
#[cfg(not(target_os = "android"))]
-use fcntl::OFlag;
+use crate::fcntl::OFlag;
use libc::{self, c_int, c_void, size_t, off_t};
#[cfg(not(target_os = "android"))]
-use sys::stat::Mode;
+use crate::sys::stat::Mode;
use std::os::unix::io::RawFd;
libc_bitflags!{