refactor: remove unused import of qsort() from C library (

This commit is contained in:
KAction
2019-07-29 22:10:22 +00:00
committed by Friedel Ziegelmayer
parent 188da2a020
commit 0c082fac7b

View File

@@ -37,14 +37,6 @@ pub fn strndup(s: *const libc::c_char, n: libc::c_ulong) -> *mut libc::c_char {
extern "C" {
pub fn clock() -> libc::clock_t;
pub fn qsort(
__base: *mut libc::c_void,
__nel: size_t,
__width: size_t,
__compar: Option<
unsafe extern "C" fn(_: *const libc::c_void, _: *const libc::c_void) -> libc::c_int,
>,
);
// -- DC Methods
pub fn dc_mprintf(format: *const libc::c_char, _: ...) -> *mut libc::c_char;