aboutsummaryrefslogtreecommitdiff
path: root/vendor/tempfile/src/file/imp/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/tempfile/src/file/imp/mod.rs')
-rw-r--r--vendor/tempfile/src/file/imp/mod.rs12
1 files changed, 0 insertions, 12 deletions
diff --git a/vendor/tempfile/src/file/imp/mod.rs b/vendor/tempfile/src/file/imp/mod.rs
deleted file mode 100644
index fbb2bbf..0000000
--- a/vendor/tempfile/src/file/imp/mod.rs
+++ /dev/null
@@ -1,12 +0,0 @@
-cfg_if::cfg_if! {
- if #[cfg(any(unix, target_os = "redox", target_os = "wasi"))] {
- mod unix;
- pub use self::unix::*;
- } else if #[cfg(windows)] {
- mod windows;
- pub use self::windows::*;
- } else {
- mod other;
- pub use self::other::*;
- }
-}