From 589981bdcb06c922a071c0bc092d2759d7fd6521 Mon Sep 17 00:00:00 2001 From: Calvin Rose Date: Sat, 18 Jun 2022 12:18:06 -0500 Subject: [PATCH] BSD systems put alloca in the stdlib --- src/core/ffi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/ffi.c b/src/core/ffi.c index 4949f9e6..49102b9d 100644 --- a/src/core/ffi.c +++ b/src/core/ffi.c @@ -30,7 +30,7 @@ #ifdef _MSC_VER #define alloca _alloca -#else +#elif defined(JANET_LINUX) #include #endif