aboutsummaryrefslogtreecommitdiffstats
path: root/builtin.c
diff options
context:
space:
mode:
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(); \