BSD systems put alloca in the stdlib

This commit is contained in:
Calvin Rose 2022-06-18 12:18:06 -05:00
parent 89546776b2
commit 589981bdcb
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@
#ifdef _MSC_VER
#define alloca _alloca
#else
#elif defined(JANET_LINUX)
#include <alloca.h>
#endif