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