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