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