Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/walkdir.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/os/mod.rs')
-rw-r--r--src/os/mod.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/os/mod.rs b/src/os/mod.rs
new file mode 100644
index 0000000..b7a2835
--- /dev/null
+++ b/src/os/mod.rs
@@ -0,0 +1,10 @@
+/*!
+Low level platform specific APIs for reading directory entries.
+*/
+
+#[cfg(target_os = "linux")]
+pub mod linux;
+#[cfg(unix)]
+pub mod unix;
+#[cfg(windows)]
+pub mod windows;