mirror of
https://github.com/fluencelabs/musl
synced 2025-06-03 10:01:38 +00:00
39 lines
377 B
C
39 lines
377 B
C
|
#include <fenv.h>
|
||
|
|
||
|
/* Dummy functions for archs lacking fenv implementation */
|
||
|
|
||
|
int feclearexcept(int mask)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
int feraiseexcept(int mask)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
int fetestexcept(int mask)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
int fegetround(void)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
int fesetround(int r)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
int fegetenv(fenv_t *envp)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
int fesetenv(const fenv_t *envp)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|