finitef.c 85 B

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