summaryrefslogtreecommitdiff
path: root/src/math/isnan.c
blob: e3e0160ae58a4874808b9eb55455459a32ca24b0 (plain)
1
2
3
4
5
6
7
8
#include <math.h>
#define isnan(x)                                       (fpclassify(x) == FP_NAN)

/*
STDC(199901)
LINK(m)
see also SUSv1
*/