Merge pull request #6813 from libgit2/ethomson/opt_alloc

cli: include alloca on illumos / solaris / sunos
This commit is contained in:
Edward Thomson
2024-05-13 11:29:04 +01:00
committed by GitHub

View File

@@ -19,6 +19,10 @@
#include <limits.h>
#include <assert.h>
#if defined(__sun) || defined(__illumos__)
# include <alloca.h>
#endif
#include "common.h"
#include "opt.h"