//! `fenv.h` implementation. //! //! See . use crate::platform::types::c_int; /// See . pub const FE_ALL_EXCEPT: c_int = 0; /// See . pub const FE_TONEAREST: c_int = 0; /// See . pub type fexcept_t = u64; /// See . #[repr(C)] pub struct fenv_t { pub cw: u64, } /// See . // #[unsafe(no_mangle)] pub unsafe extern "C" fn feclearexcept(excepts: c_int) -> c_int { unimplemented!(); } /// See . // #[unsafe(no_mangle)] pub unsafe extern "C" fn fegetenv(envp: *mut fenv_t) -> c_int { unimplemented!(); } /// See . // #[unsafe(no_mangle)] pub unsafe extern "C" fn fegetexceptflag(flagp: *mut fexcept_t, excepts: c_int) -> c_int { unimplemented!(); } /// See . // #[unsafe(no_mangle)] pub unsafe extern "C" fn fegetround() -> c_int { FE_TONEAREST } /// See . // #[unsafe(no_mangle)] pub unsafe extern "C" fn feholdexcept(envp: *mut fenv_t) -> c_int { unimplemented!(); } /// See . // #[unsafe(no_mangle)] pub unsafe extern "C" fn feraiseexcept(except: c_int) -> c_int { unimplemented!(); } /// See . // #[unsafe(no_mangle)] pub unsafe extern "C" fn fesetenv(envp: *const fenv_t) -> c_int { unimplemented!(); } /// See . // #[unsafe(no_mangle)] pub unsafe extern "C" fn fesetexceptflag(flagp: *const fexcept_t, excepts: c_int) -> c_int { unimplemented!(); } /// See . // #[unsafe(no_mangle)] pub unsafe extern "C" fn fesetround(round: c_int) -> c_int { unimplemented!(); } /// See . // #[unsafe(no_mangle)] pub unsafe extern "C" fn fetestexcept(excepts: c_int) -> c_int { unimplemented!(); } /// See . // #[unsafe(no_mangle)] pub unsafe extern "C" fn feupdateenv(envp: *const fenv_t) -> c_int { unimplemented!(); }