Files
cosmopolitan/libc/math/finite.c
Justine Tunney c91b3c5006 Initial import
2020-06-15 07:18:57 -07:00

8 lines
95 B
C

#define _GNU_SOURCE
#include "libc/math/math.h"
int finite(double x)
{
return isfinite(x);
}