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