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