1 2 3 4 5 6 7
//! Types and constants defined in the C standard library ///The value passed to exit(int) on success. pub const EXIT_SUCCESS: ::c_int = 0; ///The value passed to exit(int) on failure pub const EXIT_FAILURE: ::c_int = 1;
1 2 3 4 5 6 7
//! Types and constants defined in the C standard library ///The value passed to exit(int) on success. pub const EXIT_SUCCESS: ::c_int = 0; ///The value passed to exit(int) on failure pub const EXIT_FAILURE: ::c_int = 1;