9 lines
119 B
C
9 lines
119 B
C
|
/* alloca.h: Stack memory allocation. */
|
||
|
|
||
|
#ifndef _ALLOCA_H
|
||
|
#define _ALLOCA_H
|
||
|
|
||
|
#define alloca __builtin_alloca
|
||
|
|
||
|
#endif
|