Rename __assert to __assert_fail

This makes relibc more compatible with other libc implementations
This commit is contained in:
Mateusz Mikuła
2019-05-01 19:04:16 +02:00
committed by Mateusz Mikuła
parent 15aa52a8e9
commit 21a6701528
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ use header::{stdio, stdlib};
use platform::types::*;
#[no_mangle]
pub unsafe extern "C" fn __assert(
pub unsafe extern "C" fn __assert_fail(
func: *const c_char,
file: *const c_char,
line: c_int,