mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-18 21:30:38 +01:00
Add a bridge for a missing alloca.h on windows
This commit is contained in:
10
liba/include/bridge/alloca.h
Normal file
10
liba/include/bridge/alloca.h
Normal 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
|
||||
Reference in New Issue
Block a user