mirror of
https://github.com/fluencelabs/musl
synced 2025-06-05 02:51:40 +00:00
8 lines
106 B
C
8 lines
106 B
C
|
#include <fenv.h>
|
||
|
|
||
|
int fegetexceptflag(fexcept_t *fp, int mask)
|
||
|
{
|
||
|
*fp = fetestexcept(mask);
|
||
|
return 0;
|
||
|
}
|