From 661f59838235815b5073a0ef95f410003639519e Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Sun, 16 Aug 2020 16:14:04 -0400 Subject: rename non-compiled files to *.h --- src/math/double_t.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/math/double_t.h (limited to 'src/math/double_t.h') diff --git a/src/math/double_t.h b/src/math/double_t.h new file mode 100644 index 00000000..47b1fb36 --- /dev/null +++ b/src/math/double_t.h @@ -0,0 +1,16 @@ +#include + +#if FLT_EVAL_METHOD == 0 +typedef double double_t; +#elif FLT_EVAL_METHOD == 1 +typedef double double_t; +#elif FLT_EVAL_METHOD == 2 +typedef long double double_t; +#else + /* implementation defined */ +#endif + +/* +STDC(199901) +LINK(m) +*/ -- cgit v1.2.1