From d3e44da5272c036e1e445be9ff5290ebbfe08d86 Mon Sep 17 00:00:00 2001 From: Dan Robertson Date: Tue, 13 Mar 2018 23:27:32 +0000 Subject: [PATCH] Add the no_mangle attribute to fns Add the no_mangle attribute to functions without it. --- src/fenv/src/lib.rs | 11 +++++++++++ src/float/src/lib.rs | 1 + 2 files changed, 12 insertions(+) diff --git a/src/fenv/src/lib.rs b/src/fenv/src/lib.rs index b97e7e3b5e..49ad7d29cf 100644 --- a/src/fenv/src/lib.rs +++ b/src/fenv/src/lib.rs @@ -17,46 +17,57 @@ pub struct fenv_t { pub cw: u64, } +#[no_mangle] pub unsafe extern "C" fn feclearexcept(excepts: c_int) -> c_int { unimplemented!(); } +#[no_mangle] pub unsafe extern "C" fn fegenenv(envp: *mut fenv_t) -> c_int { unimplemented!(); } +#[no_mangle] pub unsafe extern "C" fn fegetexceptflag(flagp: *mut fexcept_t, excepts: c_int) -> c_int { unimplemented!(); } +#[no_mangle] pub unsafe extern "C" fn fegetround() -> c_int { FE_TONEAREST } +#[no_mangle] pub unsafe extern "C" fn feholdexcept(envp: *mut fenv_t) -> c_int { unimplemented!(); } +#[no_mangle] pub unsafe extern "C" fn feraiseexcept(except: c_int) -> c_int { unimplemented!(); } +#[no_mangle] pub unsafe extern "C" fn fesetenv(envp: *const fenv_t) -> c_int { unimplemented!(); } +#[no_mangle] pub unsafe extern "C" fn fesetexceptflag(flagp: *const fexcept_t, excepts: c_int) -> c_int { unimplemented!(); } +#[no_mangle] pub unsafe extern "C" fn fesetround(round: c_int) -> c_int { unimplemented!(); } +#[no_mangle] pub unsafe extern "C" fn fetestexcept(excepts: c_int) -> c_int { unimplemented!(); } +#[no_mangle] pub unsafe extern "C" fn feupdateenv(envp: *const fenv_t) -> c_int { unimplemented!(); } diff --git a/src/float/src/lib.rs b/src/float/src/lib.rs index e594fdba78..723e0d6fb4 100644 --- a/src/float/src/lib.rs +++ b/src/float/src/lib.rs @@ -11,6 +11,7 @@ use fenv::{fegetround, FE_TONEAREST}; pub const FLT_RADIX: c_int = 2; +#[no_mangle] pub unsafe extern "C" fn flt_rounds() -> c_int { match fegetround() { FE_TONEAREST => 1,