blob: ca3ef493b6fe89975ae122f02ea45625d1203486 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# define TGSOURCE "__fpclassify.c"
#include <math.h>
#include "_tgmath.h"
#if ! defined __STDC_VERSION__ || __STDC_VERSION__ < 199901L
#include "FP_INFINITE.c"
#include "FP_NAN.c"
#include "FP_NORMAL.c"
#include "FP_SUBNORMAL.c"
#include "FP_ZERO.c"
#endif
int TGFN(__fpclassify)(TYPE x)
{
(void)x;
return FP_NORMAL;
}
/*
LINK(m)
*/
|