Sign in
fuchsia
/
zircon
/
sandbox/travisg/vmalloc
/
.
/
third_party
/
ulib
/
musl
/
src
/
math
/
finite.c
blob: db63e268441dfafe92c1604744318f9b356119f2 [
file
] [
log
] [
blame
]
#define
_GNU_SOURCE
#include
<math.h>
int
finite
(
double
x
)
{
return
isfinite
(
x
);
}