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

#define isnan(__x)                                   (fpclassify(__x) == FP_NAN)

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