Files
Upsilon/liba/include/bridge/alloca.h
2017-11-12 02:10:19 +01:00

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