summaryrefslogtreecommitdiff
path: root/src/math/isinf.c
blob: 1a6b00ffff838b1556e2b9378e7f0c1ec191ab98 (plain)
1
2
3
4
5
6
7
8
#include <math.h>

#define isinf(x)                                  (fpclassify(x) == FP_INFINITE)

/*
STDC(199901)
LINK(m)
*/