blob: 9c6da620433ea2da86f31c11ae32847222ec46c5 [file]
#define _GNU_SOURCE
#include <math.h>
int finitef(float x) {
return isfinite(x);
}