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