Skip to content
Snippets Groups Projects
Commit ef9545cf authored by Paul Sajna's avatar Paul Sajna
Browse files

missing parens

parent cdf5cb2d
No related branches found
No related tags found
1 merge request!12fix atexit
...@@ -15,7 +15,7 @@ static ALLOCATOR: ralloc::Allocator = ralloc::Allocator; ...@@ -15,7 +15,7 @@ static ALLOCATOR: ralloc::Allocator = ralloc::Allocator;
pub const EXIT_FAILURE: c_int = 1; pub const EXIT_FAILURE: c_int = 1;
pub const EXIT_SUCCESS: c_int = 0; pub const EXIT_SUCCESS: c_int = 0;
static mut ATEXIT_FUNCS: [Option<extern "C" fn>; 32] = [None; 32]; static mut ATEXIT_FUNCS: [Option<extern "C" fn()>; 32] = [None; 32];
#[no_mangle] #[no_mangle]
pub extern "C" fn a64l(s: *const c_char) -> c_long { pub extern "C" fn a64l(s: *const c_char) -> c_long {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment