From e986a5a1da8fa8212f02d6f2281390db4b33ece7 Mon Sep 17 00:00:00 2001 From: AzureMarker Date: Wed, 9 Feb 2022 21:55:28 -0800 Subject: [PATCH] Remove sysconf stub since it's now implemented in linker-fix --- ctru-rs/src/test_runner.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/ctru-rs/src/test_runner.rs b/ctru-rs/src/test_runner.rs index ff3a459..3c7aa9a 100644 --- a/ctru-rs/src/test_runner.rs +++ b/ctru-rs/src/test_runner.rs @@ -115,9 +115,4 @@ mod link_fix { extern "C" fn sigemptyset(_arg1: *mut libc::sigset_t) -> ::libc::c_int { -1 } - - #[no_mangle] - extern "C" fn sysconf(_name: libc::c_int) -> libc::c_long { - -1 - } }