From 2c5856ac1cde30f4639c78cd68dcbb3cba7116bb Mon Sep 17 00:00:00 2001 From: "Guillermo J. Rozas" Date: Fri, 19 Nov 1993 04:46:13 +0000 Subject: [PATCH] Define NO_ARG_ARRAY by default, since arguments are often passed in registers and modern optimizing compilers will only put the addressed variable on the stack. --- v7/src/microcode/tparam.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/v7/src/microcode/tparam.c b/v7/src/microcode/tparam.c index c3b8d73ea..5e95c918f 100644 --- a/v7/src/microcode/tparam.c +++ b/v7/src/microcode/tparam.c @@ -107,6 +107,9 @@ what you give them. Help stamp out software-hoarding! */ /* config.h may rename various library functions such as malloc. */ #ifdef emacs #include "config.h" +#else +/* Be safe */ +#define NO_ARG_ARRAY #endif #include "ansidecl.h" -- 2.25.1