1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #include <fenv.h>
- #include <shlib-compat.h>
- int
- __feupdateenv (const fenv_t *envp)
- {
- #if defined FE_NOMASK_ENV && FE_ALL_EXCEPT != 0
- if (envp == FE_NOMASK_ENV)
- return 1;
- #endif
-
- return 0;
- }
- #if SHLIB_COMPAT (libm, GLIBC_2_1, GLIBC_2_2)
- strong_alias (__feupdateenv, __old_feupdateenv)
- compat_symbol (libm, __old_feupdateenv, feupdateenv, GLIBC_2_1);
- #endif
- libm_hidden_def (__feupdateenv)
- libm_hidden_ver (__feupdateenv, feupdateenv)
- versioned_symbol (libm, __feupdateenv, feupdateenv, GLIBC_2_2);
- stub_warning (feupdateenv)
|