29 lines
397 B
Rust
29 lines
397 B
Rust
use core::ffi::c_int;
|
|
|
|
mod conv;
|
|
mod io;
|
|
mod malloc;
|
|
mod math;
|
|
mod process;
|
|
mod random;
|
|
mod util;
|
|
mod wide;
|
|
|
|
pub const EXIT_SUCCESS: c_int = 0;
|
|
pub const EXIT_FAILURE: c_int = 1;
|
|
|
|
pub const MB_CUR_MAX: c_int = 4;
|
|
|
|
// TODO
|
|
// {RAND_MAX}
|
|
// Maximum value returned by rand(); at least 32767.
|
|
//
|
|
// WEXITSTATUS
|
|
// WIFEXITED
|
|
// WIFSIGNALED
|
|
// WIFSTOPPED
|
|
// WNOHANG
|
|
// WSTOPSIG
|
|
// WTERMSIG
|
|
// WUNTRACED
|