libc_spawn/lib.rs
1// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
2// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
3// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
4// option. This file may not be copied, modified, or distributed
5// except according to those terms.
6
7extern crate libc;
8#[macro_use]
9extern crate cfg_if;
10
11pub mod optional_const;
12
13cfg_if! {
14 if #[cfg(unix)] {
15 mod unix;
16 pub use unix::*;
17 }
18}