diff options
Diffstat (limited to 'math/eval/files/patch-funcs.c')
-rw-r--r-- | math/eval/files/patch-funcs.c | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/math/eval/files/patch-funcs.c b/math/eval/files/patch-funcs.c new file mode 100644 index 000000000000..f8946bc9062e --- /dev/null +++ b/math/eval/files/patch-funcs.c @@ -0,0 +1,28 @@ +--- /tmp/Eval/source/funcs.c Tue Apr 13 21:04:40 1993 ++++ funcs.c Wed Mar 16 04:31:35 1994 +@@ -52,16 +52,6 @@ + + #include "eval.h" + +-#define MAXALEN 3 +-#define MAXDLEN 80 +- +-typedef struct { +- int id; +- char name[MAXFLEN+1]; +- char argspec[MAXALEN+1]; +- char desc[MAXDLEN+1]; +- } FUNC, *FUNCPTR; +- + #define ABSVAL 1 + #define ACOS 2 + #define ACOSH 3 +@@ -93,7 +83,7 @@ + #define TAN 29 + #define TANH 30 + +-static FUNC flist[NUMFUNCS] = ++FUNC flist[NUMFUNCS] = + { + {ABSVAL,"abs", "x", "absolute value" }, + {ACOS, "acos", "x", "arccosine, return value in radians" }, |