1
0
mirror of https://github.com/blawar/ooot.git synced 2024-07-04 18:13:37 +00:00
ooot/include/z64alloca.h

7 lines
86 B
C
Raw Normal View History

#pragma once
#ifndef _MSC_VER
#include <alloca.h>
#else
2022-04-08 21:48:33 +00:00
#define alloca _alloca
#endif