fix invalid implicit pointer conversion in gnulib-compat functions
[oweals/musl.git] / src / fenv / fegetexceptflag.c
1 #include <fenv.h>
2
3 int fegetexceptflag(fexcept_t *fp, int mask)
4 {
5         *fp = fetestexcept(mask);
6         return 0;
7 }