libc-spawn 0.0.1

Raw bindings to POSIX spawn APIs for Rust
Documentation
1
2
3
4
5
6
7

cfg_if! {
    if #[cfg(any(target_os = "linux"))] {
        mod linux;
        pub use self::linux::*;
    }
}