vx32

Local 9vx git repository for patches.
git clone git://r-36.net/vx32
Log | Files | 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