Sign in
mojo
/
mojo-tools
/
1209a8232086824720a8a2fc3a1d8143a0653fbb
/
.
/
fusl
/
src
/
math
/
finitef.c
blob: 9c6da620433ea2da86f31c11ae32847222ec46c5 [
file
]
#define
_GNU_SOURCE
#include
<math.h>
int
finitef
(
float
x
)
{
return
isfinite
(
x
);
}