1
0
mirror of https://github.com/blawar/ooot.git synced 2024-07-02 09:03:36 +00:00
ooot/include/z64alloca.h
2022-04-03 18:25:31 -04:00

8 lines
88 B
C

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