Add a bridge for a missing alloca.h on windows

This commit is contained in:
Romain Goyet
2017-11-12 01:59:33 +01:00
committed by Ecco
parent 9a41ee8ad9
commit e46d157fe6

View File

@@ -0,0 +1,10 @@
#ifndef LIBA_BRIDGE_ALLOCA_H
#define LIBA_BRIDGE_ALLOCA_H
#if __MINGW32__
#include <malloc.h>
#else
#include_next <alloca.h>
#endif
#endif