#include #include "_fenv.h" int fegetenv(fenv_t *envp) { SIGNAL_SAFE(0); (void)envp; return 0; } CHECK_1(int, 0, fegetenv, fenv_t *) /* The fegetenv function stores the current floating-point environment in the object pointed to by envp. */ /* STDC(199901) LINK(m) */