1
0
mirror of https://github.com/janet-lang/janet synced 2024-11-25 01:37:19 +00:00

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

View File

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