summaryrefslogtreecommitdiffstats
path: root/newlib/libc/sys/linux/include/alloca.h
blob: ba542627d2aa4ee6f00929c33a098f16d5297ec4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* libc/sys/linux/include/alloca.h - Allocate memory on stack */

/* Written 2000 by Werner Almesberger */


#ifndef _NEWLIB_ALLOCA_H
#define _NEWLIB_ALLOCA_H

/* Simple, since we know that we use gcc */

#define alloca(size) __builtin_alloca(size)

#endif