Files
semi-libc/src/math/finite.c
T

8 lines
85 B
C

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