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 | edab2dea86b0d357520c256decbc470bdaaa17d2 (patch) | |
tree | a859bca8c0516cde03d25037c792ae2607817900 | |
parent | 3c3dfc1dfaddf0a6def3524947702004dcc7649a (diff) | |
download | txr-edab2dea86b0d357520c256decbc470bdaaa17d2.tar.gz txr-edab2dea86b0d357520c256decbc470bdaaa17d2.tar.bz2 txr-edab2dea86b0d357520c256decbc470bdaaa17d2.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" |