musl-tcc/src/math/finite.c

8 lines
85 B
C

#define _GNU_SOURCE
#include <math.h>
int finite(double x)
{
return isfinite(x);
}