Sign in
mojo
/
mojo-tools
/
73e948c3cd78ca019b82d8ad10c2326e3920fffc
/
.
/
fusl
/
src
/
math
/
finite.c
blob: 98d3bd94da853426dec8ad975bf529c7dd27e135 [
file
] [
log
] [
blame
]
#define
_GNU_SOURCE
#include
<math.h>
int
finite
(
double
x
)
{
return
isfinite
(
x
);
}