summaryrefslogtreecommitdiff
path: root/src/math/__fpclassify.c
blob: 8331bd41619ce40e7b1ea3c9d8736158c8086a30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# define TGSOURCE "__fpclassify.c"
#include <math.h>
#include "_tgmath.h"

int TGFN(__fpclassify)(TYPE x)
{
	(void)x;
	return FP_NORMAL;
}

/*
LINK(m)
*/