diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2010-12-18 19:57:34 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2010-12-18 19:57:34 +0200 |
commit | dd4d686a4181448171114d6fc6f4f8ae58394e16 (patch) | |
tree | 4be38745cded68c77176199f6ec11f22cdc58c04 /builtin.c | |
parent | 7cc023ae0a685fe10e2ffadd84b5c7ec3ee28241 (diff) | |
download | egawk-dd4d686a4181448171114d6fc6f4f8ae58394e16.tar.gz egawk-dd4d686a4181448171114d6fc6f4f8ae58394e16.tar.bz2 egawk-dd4d686a4181448171114d6fc6f4f8ae58394e16.zip |
Remove old code for Cray.
Diffstat (limited to 'builtin.c')
-rw-r--r-- | builtin.c | 11 |
1 files changed, 0 insertions, 11 deletions
@@ -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(); \ |