/* (c) Copyright 2019 Joel Sherrill #include /* FUNCTION <>---update current floating-point environment INDEX feupdateenv SYNOPSIS #include int feupdateenv(const fenv_t *<[envp]>); Link with -lm. DESCRIPTION This method attempts to save the currently raised floating point exceptions in its automatic storage, install the floating point environment specified by <[envp]>, and raise the saved floating point exceptions. The argument <[envp]> must point to a floating-point environment obtained via <> or <>. RETURNS If all actions are completed successfully, then this method returns zero. Otherwise, a non-zero value is returned. PORTABILITY ANSI C requires <>. Not all Newlib targets have a working implementation. Refer to the file <> to see the status for your target. */ /* * This is a non-functional implementation that should be overridden * by an architecture specific implementation in newlib/libm/machine/ARCH. */ int feupdateenv(const fenv_t *envp) { return -ENOTSUP; }