aboutsummaryrefslogtreecommitdiff
path: root/src/sys/shell/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/sys/shell/mod.rs')
-rw-r--r--src/sys/shell/mod.rs10
1 files changed, 2 insertions, 8 deletions
diff --git a/src/sys/shell/mod.rs b/src/sys/shell/mod.rs
index a63760a..7e1533f 100644
--- a/src/sys/shell/mod.rs
+++ b/src/sys/shell/mod.rs
@@ -10,16 +10,10 @@ pub(crate) use self::selector::{event, Event, Events, Selector};
mod waker;
pub(crate) use self::waker::Waker;
-cfg_tcp! {
+cfg_net! {
pub(crate) mod tcp;
-}
-
-cfg_udp! {
pub(crate) mod udp;
-}
-
-#[cfg(unix)]
-cfg_uds! {
+ #[cfg(unix)]
pub(crate) mod uds;
}