From e46d157fe64f3be7c0b816c39e92fe4807823869 Mon Sep 17 00:00:00 2001 From: Romain Goyet Date: Sun, 12 Nov 2017 01:59:33 +0100 Subject: [PATCH] Add a bridge for a missing alloca.h on windows --- liba/include/bridge/alloca.h | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 liba/include/bridge/alloca.h diff --git a/liba/include/bridge/alloca.h b/liba/include/bridge/alloca.h new file mode 100644 index 000000000..ae34cf312 --- /dev/null +++ b/liba/include/bridge/alloca.h @@ -0,0 +1,10 @@ +#ifndef LIBA_BRIDGE_ALLOCA_H +#define LIBA_BRIDGE_ALLOCA_H + +#if __MINGW32__ +#include +#else +#include_next +#endif + +#endif