mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-18 16:27:34 +01:00
11 lines
141 B
C
11 lines
141 B
C
#ifndef LIBA_BRIDGE_ALLOCA_H
|
|
#define LIBA_BRIDGE_ALLOCA_H
|
|
|
|
#if __MINGW32__
|
|
#include <malloc.h>
|
|
#else
|
|
#include_next <alloca.h>
|
|
#endif
|
|
|
|
#endif
|