summaryrefslogtreecommitdiff
path: root/src/nonstd
diff options
context:
space:
mode:
Diffstat (limited to 'src/nonstd')
-rw-r--r--src/nonstd/tgmath.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/src/nonstd/tgmath.h b/src/nonstd/tgmath.h
deleted file mode 100644
index 01533baa..00000000
--- a/src/nonstd/tgmath.h
+++ /dev/null
@@ -1,31 +0,0 @@
-#ifndef __NONSTD_TGMATH_H__
-#define __NONSTD_TGMATH_H__
-#include <math.h>
-
-#ifdef TGSOURCE
-
-# if (defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L)
-# define TGFN(x) x##f
-# define TYPE float
-# define TGHUGE HUGE_VALF
-# include TGSOURCE
-# undef TGFN
-# undef TYPE
-# undef TGHUGE
-
-# define TGFN(x) x##l
-# define TYPE long double
-# define TGHUGE HUGE_VALL
-# include TGSOURCE
-# undef TGFN
-# undef TYPE
-# undef TGHUGE
-# endif
-
-#endif
-
-#define TGFN(x) x
-#define TYPE double
-#define TGHUGE HUGE_VAL
-
-#endif