/* (c) Copyright 2019 Joel Sherrill /* * This is a non-functional implementation that should be overridden * by an architecture specific implementation in newlib/libm/machine/ARCH. * * The implementation must defined FE_DFL_ENV to point to a default * environment of type fenv_t. */ /* Non-static and writable to allow initialization at startup. */ fenv_t __fe_dfl_env = { 0 }; const fenv_t *_fe_dfl_env = &__fe_dfl_env;