aboutsummaryrefslogtreecommitdiff
path: root/src/sys/unix/selector/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/sys/unix/selector/mod.rs')
-rw-r--r--src/sys/unix/selector/mod.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/sys/unix/selector/mod.rs b/src/sys/unix/selector/mod.rs
index 9ae4c14..c06c7b1 100644
--- a/src/sys/unix/selector/mod.rs
+++ b/src/sys/unix/selector/mod.rs
@@ -17,20 +17,20 @@ pub(crate) use self::epoll::{event, Event, Events, Selector};
#[cfg(any(
target_os = "dragonfly",
target_os = "freebsd",
+ target_os = "netbsd",
+ target_os = "openbsd",
target_os = "ios",
target_os = "macos",
- target_os = "netbsd",
- target_os = "openbsd"
))]
mod kqueue;
#[cfg(any(
target_os = "dragonfly",
target_os = "freebsd",
+ target_os = "netbsd",
+ target_os = "openbsd",
target_os = "ios",
target_os = "macos",
- target_os = "netbsd",
- target_os = "openbsd"
))]
pub(crate) use self::kqueue::{event, Event, Events, Selector};