Comment out #[no_mangle] on unimplemented functions

This stops configure scripts from identifying them as valid
This commit is contained in:
jD91mZM2
2018-07-12 18:14:43 +02:00
parent b8cab5f0be
commit a7cc95cd90
21 changed files with 329 additions and 328 deletions
+2 -2
View File
@@ -142,7 +142,7 @@ pub unsafe extern "C" fn strcmp(s1: *const c_char, s2: *const c_char) -> c_int {
strncmp(s1, s2, usize::MAX)
}
#[no_mangle]
// #[no_mangle]
pub extern "C" fn strcoll(s1: *const c_char, s2: *const c_char) -> c_int {
unimplemented!();
}
@@ -400,7 +400,7 @@ pub extern "C" fn strtok_r(
}
}
#[no_mangle]
// #[no_mangle]
pub extern "C" fn strxfrm(s1: *mut c_char, s2: *const c_char, n: usize) -> size_t {
unimplemented!();
}