blob: 6e18c4713bfb3085e277151378d436e9cd37ca11 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# define TGSOURCE "__fpclassify.c"
#include <math.h>
#include "_tgmath.h"
int TGFN(__fpclassify)(TYPE x)
{
SIGNAL_SAFE(0);
(void)x;
return FP_NORMAL;
}
/*
STDC(0)
LINK(m)
*/
|