diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2019-03-30 22:24:33 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2019-03-30 22:24:33 -0700 |
commit | 38f214ed6367a312e0562d000b3583b4d9742c98 (patch) | |
tree | a859bca8c0516cde03d25037c792ae2607817900 | |
parent | 9e464a4cc18c5ca8ccdc6ac30e082b8d6b315d67 (diff) | |
download | txr-38f214ed6367a312e0562d000b3583b4d9742c98.tar.gz txr-38f214ed6367a312e0562d000b3583b4d9742c98.tar.bz2 txr-38f214ed6367a312e0562d000b3583b4d9742c98.zip |
arith: missing alloca.
* arith.c: we need to include "alloca.h" since we have moved
some functions into here from lib.c which use "args.h" macros.
This shows up on Cygwin and some other platforms.
-rw-r--r-- | arith.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -40,6 +40,7 @@ #if HAVE_ROUNDING_CTL_H #include <fenv.h> #endif +#include "alloca.h" #include "lib.h" #include "signal.h" #include "unwind.h" |