From: Nadav Har'El <[email protected]> Committer: Nadav Har'El <[email protected]> Branch: master
Add feenableexcept() and friends to fenv.h Our include/api/fenv.h (copied from Musl) was missing those functions. Signed-off-by: Nadav Har'El <[email protected]> Message-Id: <[email protected]> --- diff --git a/include/api/fenv.h b/include/api/fenv.h --- 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 -- 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.
