1#define _GNU_SOURCE
2#include <math.h>
3
4int finitef(float x) {
5    return isfinite(x);
6}
7