summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/sys/mod.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sys/mod.rs b/src/sys/mod.rs
index 2fe2d301..a690c004 100644
--- a/src/sys/mod.rs
+++ b/src/sys/mod.rs
@@ -18,7 +18,8 @@ pub mod memfd;
#[macro_use]
pub mod ioctl;
-#[cfg(any(target_os = "linux", target_os = "android"))]
+// TODO: Add support for dragonfly, freebsd, and ios/macos.
+#[cfg(any(target_os = "android", target_os = "linux"))]
pub mod sendfile;
pub mod signal;