Welcome to mirror list, hosted at ThFree Co, Russian Federation.

alloca.h « include « linux « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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