alloca.h - vx32 - Local 9vx git repository for patches.
(HTM) git clone git://r-36.net/vx32
(DIR) Log
(DIR) Files
(DIR) Refs
---
alloca.h (152B)
---
1 #ifndef _ALLOCA_H
2 #define _ALLOCA_H
3
4 /* Use GCC's built-in dynamic stack allocator */
5 #define alloca(size) __builtin_alloca (size)
6
7 #endif // _ALLOCA_H