From edab2dea86b0d357520c256decbc470bdaaa17d2 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Sat, 30 Mar 2019 22:24:33 -0700 Subject: 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. --- arith.c | 1 + 1 file changed, 1 insertion(+) diff --git a/arith.c b/arith.c index c8ec84de..be620755 100644 --- a/arith.c +++ b/arith.c @@ -40,6 +40,7 @@ #if HAVE_ROUNDING_CTL_H #include #endif +#include "alloca.h" #include "lib.h" #include "signal.h" #include "unwind.h" -- cgit v1.2.3