1
0
mirror of https://github.com/blawar/ooot.git synced 2024-06-25 22:09:34 +00:00
ooot/include/z64alloca.h
2022-04-13 17:00:41 -04:00

7 lines
86 B
C

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