summaryrefslogtreecommitdiff
path: root/nonstd/tgmath.h
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2019-02-08 18:45:05 -0500
committerJakob Kaivo <jkk@ung.org>2019-02-08 18:45:05 -0500
commit84217308cf704fda8a9db817b458ccadf444efe9 (patch)
tree1d65e1610c22d6a68c90d67f4c7f3b147bfa151f /nonstd/tgmath.h
parent7ef8a7379f7f7d09e71ccae2a0b688c3cd80423f (diff)
add headers and assembly
Diffstat (limited to 'nonstd/tgmath.h')
-rw-r--r--nonstd/tgmath.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/nonstd/tgmath.h b/nonstd/tgmath.h
deleted file mode 100644
index 01533baa..00000000
--- a/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