blob: 21cbba71f2097c6fbc94e2b54876a77fb2d65507 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#if 0
# 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)
*/
#endif
|