/* (c) Copyright 2019 Joel Sherrill #include /* FUNCTION <>---get current floating-point environment INDEX fegetenv SYNOPSIS #include int fegetenv(fenv_t *<[envp]>); Link with -lm. DESCRIPTION This method attempts to return the floating-point environment in the area specified by <[envp]>. RETURNS If floating-point environment was successfully returned, 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 fegetenv(fenv_t *envp) { return -ENOTSUP; }