diff options
Diffstat (limited to 'vendor/rustix/src/fs/constants.rs')
-rw-r--r-- | vendor/rustix/src/fs/constants.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/vendor/rustix/src/fs/constants.rs b/vendor/rustix/src/fs/constants.rs index c8e261e66..3ccc383bb 100644 --- a/vendor/rustix/src/fs/constants.rs +++ b/vendor/rustix/src/fs/constants.rs @@ -3,7 +3,7 @@ use crate::backend; pub use crate::io::FdFlags; -pub use backend::fs::types::{Access, Mode, OFlags}; +pub use backend::fs::types::{Access, Dev, Mode, OFlags}; #[cfg(not(target_os = "redox"))] pub use backend::fs::types::AtFlags; @@ -14,7 +14,4 @@ pub use backend::fs::types::{CloneFlags, CopyfileFlags}; #[cfg(any(target_os = "android", target_os = "linux"))] pub use backend::fs::types::*; -#[cfg(not(target_os = "redox"))] -pub use backend::fs::types::Dev; - pub use backend::time::types::{Nsecs, Secs, Timespec}; |