summaryrefslogtreecommitdiff
path: root/src/math/float_t.h
blob: 251f5b2e1af9ee71c0c4d390132fb4ee0c445cec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <math.h>

#if FLT_EVAL_METHOD == 0
typedef float float_t;
#elif FLT_EVAL_METHOD == 1
typedef double float_t;
#elif FLT_EVAL_METHOD == 2
typedef long double float_t;
#else
 /* implementation defined */
#endif

/*
STDC(199901)
LINK(m)
*/