summaryrefslogtreecommitdiff
path: root/src/sys/mod.rs
diff options
context:
space:
mode:
authoralesharik <alesharikReserv@yandex.ru>2018-07-11 17:21:23 +0300
committeralesharikReserv@yandex.ru <alesharikReserv@yandex.ru>2019-06-12 15:26:43 +0300
commite6d810d14965f1783b0ce1ff0e4db3f4a157014c (patch)
treeca3e832beea0531b2beaaf1599f5a7f84f70e873 /src/sys/mod.rs
parent50f55e77df63ed7ab9b8aad348653d44dce80ab2 (diff)
downloadnix-e6d810d14965f1783b0ce1ff0e4db3f4a157014c.zip
Update statfs
Diffstat (limited to 'src/sys/mod.rs')
-rw-r--r--src/sys/mod.rs9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/sys/mod.rs b/src/sys/mod.rs
index 88c7251d..d3c2f92b 100644
--- a/src/sys/mod.rs
+++ b/src/sys/mod.rs
@@ -71,7 +71,14 @@ pub mod socket;
pub mod stat;
-#[cfg(any(target_os = "android", target_os = "linux", target_os = "macos"))]
+#[cfg(any(target_os = "android",
+ target_os = "dragonfly",
+ target_os = "freebsd",
+ target_os = "ios",
+ target_os = "linux",
+ target_os = "macos",
+ target_os = "openbsd"
+))]
pub mod statfs;
pub mod statvfs;