Sha256: 916ae11e4763588518d64dee82afb41be9d1ee38ecc0679c821d4e7e22cd3dc5

Contents?: true

Size: 478 Bytes

Versions: 11

Compression:

Stored size: 478 Bytes

Contents

// src: musl/src/fenv/fenv.c
/* Dummy functions for archs lacking fenv implementation */

pub(crate) const FE_UNDERFLOW: i32 = 0;
pub(crate) const FE_INEXACT: i32 = 0;

pub(crate) const FE_TONEAREST: i32 = 0;

#[inline]
pub(crate) fn feclearexcept(_mask: i32) -> i32 {
    0
}

#[inline]
pub(crate) fn feraiseexcept(_mask: i32) -> i32 {
    0
}

#[inline]
pub(crate) fn fetestexcept(_mask: i32) -> i32 {
    0
}

#[inline]
pub(crate) fn fegetround() -> i32 {
    FE_TONEAREST
}

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
wasmtime-29.0.0 ./ext/cargo-vendor/libm-0.2.11/src/math/fenv.rs
wasmtime-28.0.0 ./ext/cargo-vendor/libm-0.2.11/src/math/fenv.rs
wasmtime-27.0.0 ./ext/cargo-vendor/libm-0.2.11/src/math/fenv.rs
wasmtime-26.0.0 ./ext/cargo-vendor/libm-0.2.8/src/math/fenv.rs
wasmtime-25.0.2 ./ext/cargo-vendor/libm-0.2.8/src/math/fenv.rs
wasmtime-25.0.1 ./ext/cargo-vendor/libm-0.2.8/src/math/fenv.rs
wasmtime-25.0.0 ./ext/cargo-vendor/libm-0.2.8/src/math/fenv.rs
wasmtime-24.0.0 ./ext/cargo-vendor/libm-0.2.8/src/math/fenv.rs
wasmtime-23.0.2 ./ext/cargo-vendor/libm-0.2.8/src/math/fenv.rs
wasmtime-22.0.0 ./ext/cargo-vendor/libm-0.2.8/src/math/fenv.rs
wasmtime-21.0.1 ./ext/cargo-vendor/libm-0.2.8/src/math/fenv.rs