Added memory management function calls to the C library.

This commit is contained in:
2017-03-05 17:32:09 -05:00
parent 43abe9d95f
commit a320296f18
3 changed files with 17 additions and 0 deletions

View File

@ -4,11 +4,15 @@
mod errno;
mod stddef;
mod stdlib;
mod string;
mod time;
pub use self::errno::*;
pub use self::stddef::*;
pub use self::stdlib::*;
pub use self::string::*;
pub use self::time::*;