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