aboutsummaryrefslogtreecommitdiffstats
path: root/builtin.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2010-12-18 19:57:34 +0200
committerArnold D. Robbins <arnold@skeeve.com>2010-12-18 19:57:34 +0200
commitdd4d686a4181448171114d6fc6f4f8ae58394e16 (patch)
tree4be38745cded68c77176199f6ec11f22cdc58c04 /builtin.c
parent7cc023ae0a685fe10e2ffadd84b5c7ec3ee28241 (diff)
downloadegawk-dd4d686a4181448171114d6fc6f4f8ae58394e16.tar.gz
egawk-dd4d686a4181448171114d6fc6f4f8ae58394e16.tar.bz2
egawk-dd4d686a4181448171114d6fc6f4f8ae58394e16.zip
Remove old code for Cray.
Diffstat (limited to 'builtin.c')
-rw-r--r--builtin.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/builtin.c b/builtin.c
index fc3a327d..3628d3c9 100644
--- a/builtin.c
+++ b/builtin.c
@@ -68,17 +68,6 @@ extern FILE *output_fp;
static NODE *sub_common(int nargs, long how_many, int backdigs);
-#ifdef _CRAY
-/* Force the standard C compiler to use the library math functions. */
-extern double exp(double);
-double (*Exp)(double) = exp;
-#define exp(x) (*Exp)(x)
-extern double log(double);
-double (*Log)(double) = log;
-#define log(x) (*Log)(x)
-#endif
-
-
#define POP_TWO_SCALARS(s1, s2) \
s2 = POP_SCALAR(); \
s1 = POP(); \