1
0
mirror of https://github.com/blawar/ooot.git synced 2024-07-05 10:33:36 +00:00
ooot/include/z64alloca.h

8 lines
88 B
C
Raw Normal View History

#pragma once
#ifndef _MSC_VER
#include <alloca.h>
#else
#define alloca _alloca
#endif