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