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