diff options
author | Martin Pärtel <martin.partel@gmail.com> | 2021-02-13 16:01:35 +0200 |
---|---|---|
committer | Martin Pärtel <martin.partel@gmail.com> | 2021-02-13 16:01:35 +0200 |
commit | 3284e7bf9a7538f53d9c714bf39e3b74fbce3702 (patch) | |
tree | 2266c9b81f3706edd3204fb1eeecac9090646b9a | |
parent | bc5313dc583cad9a3949bd798995ab1ee398ecf6 (diff) | |
download | bindfs-3284e7bf9a7538f53d9c714bf39e3b74fbce3702.tar.gz |
Include alloca.h to fix build on MacOS
-rw-r--r-- | src/permchain.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/permchain.c b/src/permchain.c index 6d886ef..a82b8a3 100644 --- a/src/permchain.c +++ b/src/permchain.c @@ -18,6 +18,7 @@ */ #include "permchain.h" +#include <alloca.h> #include <assert.h> #include <string.h> #include <ctype.h> |