2017-03-01 19:05:36 -05:00
|
|
|
//! 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.
|
|
|
|
|
|
|
|
|
2017-03-04 14:04:57 -05:00
|
|
|
mod errno;
|
2017-03-05 17:32:09 -05:00
|
|
|
mod stddef;
|
|
|
|
mod stdlib;
|
2017-03-01 19:05:36 -05:00
|
|
|
mod string;
|
|
|
|
mod time;
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-03-04 14:04:57 -05:00
|
|
|
pub use self::errno::*;
|
2017-03-05 17:32:09 -05:00
|
|
|
pub use self::stddef::*;
|
|
|
|
pub use self::stdlib::*;
|
2017-03-01 19:05:36 -05:00
|
|
|
pub use self::string::*;
|
|
|
|
pub use self::time::*;
|