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

#define fpclassify(x)    ((sizeof (x) == sizeof (float)) ? __fpclassifyf(x) : \
	(sizeof (x) == sizeof (double)) ? __fpclassify(x) :  __fpclassifyl(x))

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