Create lrzip_private.h

Fix defining the builtin_alloca for gcc which we missed in testing
This commit is contained in:
rubenllorente 2022-06-26 09:36:44 +00:00 committed by GitHub
parent 4ceee58572
commit 884afda777
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -48,6 +48,8 @@
# include <alloca.h>
#elif defined _AIX
# define alloca __alloca
#elif defined __GNUC__
# define alloca __builtin_alloca
#elif defined _MSC_VER
# include <malloc.h>
# define alloca _alloca