diff options
Diffstat (limited to 'vendor/rustix-0.36.5/src/fs/constants.rs')
-rw-r--r-- | vendor/rustix-0.36.5/src/fs/constants.rs | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/vendor/rustix-0.36.5/src/fs/constants.rs b/vendor/rustix-0.36.5/src/fs/constants.rs deleted file mode 100644 index 11b53fd2a..000000000 --- a/vendor/rustix-0.36.5/src/fs/constants.rs +++ /dev/null @@ -1,20 +0,0 @@ -//! Filesystem API constants, translated into `bitflags` constants. - -use crate::backend; - -pub use crate::io::FdFlags; -pub use backend::fs::types::{Access, Mode, OFlags}; - -#[cfg(not(target_os = "redox"))] -pub use backend::fs::types::AtFlags; - -#[cfg(any(target_os = "ios", target_os = "macos"))] -pub use backend::fs::types::{CloneFlags, CopyfileFlags}; - -#[cfg(any(target_os = "android", target_os = "linux"))] -pub use backend::fs::types::{RenameFlags, ResolveFlags}; - -#[cfg(not(target_os = "redox"))] -pub use backend::fs::types::Dev; - -pub use backend::time::types::{Nsecs, Secs, Timespec}; |