Our include/api/fenv.h (copied from Musl) was missing those functions. Signed-off-by: Nadav Har'El <[email protected]> --- include/api/fenv.h | 4 ++++ 1 file changed, 4 insertions(+)
diff --git a/include/api/fenv.h b/include/api/fenv.h index 4e31c43..4541513 100644 --- a/include/api/fenv.h +++ b/include/api/fenv.h @@ -21,6 +21,10 @@ int feholdexcept(fenv_t *); int fesetenv(const fenv_t *); int feupdateenv(const fenv_t *); +int feenableexcept(int); +int fedisableexcept(int); +int fegetexcept(void); + #ifdef __cplusplus } #endif -- 2.9.3 -- You received this message because you are subscribed to the Google Groups "OSv Development" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
