From 884afda7772c960e18e7f301e75c946679e448b4 Mon Sep 17 00:00:00 2001 From: rubenllorente <108059858+rubenllorente@users.noreply.github.com> Date: Sun, 26 Jun 2022 09:36:44 +0000 Subject: [PATCH] Create lrzip_private.h Fix defining the builtin_alloca for gcc which we missed in testing --- lrzip_private.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lrzip_private.h b/lrzip_private.h index bf3304a..e513163 100644 --- a/lrzip_private.h +++ b/lrzip_private.h @@ -48,6 +48,8 @@ # include #elif defined _AIX # define alloca __alloca +#elif defined __GNUC__ +# define alloca __builtin_alloca #elif defined _MSC_VER # include # define alloca _alloca