open_coroutine_core/syscall/mod.rs
1macro_rules! syscall_mod {
2 ($($mod_name: ident);*$(;)?) => {
3 $(
4 pub use $mod_name::$mod_name;
5 mod $mod_name;
6 )*
7 }
8}
9
10#[cfg(unix)]
11pub use unix::*;
12
13#[cfg(unix)]
14mod unix;
15
16#[cfg(windows)]
17pub use windows::*;
18
19#[allow(non_snake_case)]
20#[cfg(windows)]
21mod windows;