pact/src/c/mod.rs

21 lines
405 B
Rust
Raw Normal View History

//! Handle defining the external functions from what ever C library is
//! being linked against. These will use the C99 definitions so that
//! this library is as up-to-date as it can be.
mod errno;
2017-06-22 16:21:30 -04:00
mod math;
mod stddef;
mod stdlib;
mod string;
mod time;
pub use self::errno::*;
2017-06-22 16:21:30 -04:00
pub use self::math::*;
pub use self::stddef::*;
pub use self::stdlib::*;
pub use self::string::*;
pub use self::time::*;