summaryrefslogtreecommitdiffstats
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, 12 insertions, 0 deletions
diff --git a/vendor/tempfile/src/file/imp/mod.rs b/vendor/tempfile/src/file/imp/mod.rs
new file mode 100644
index 000000000..31e872886
--- /dev/null
+++ b/vendor/tempfile/src/file/imp/mod.rs
@@ -0,0 +1,12 @@
+cfg_if! {
+ if #[cfg(any(unix, target_os = "redox"))] {
+ mod unix;
+ pub use self::unix::*;
+ } else if #[cfg(windows)] {
+ mod windows;
+ pub use self::windows::*;
+ } else {
+ mod other;
+ pub use self::other::*;
+ }
+}