summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/include/alloca.h
blob: 41f92354f7c5d9e1a74bcbda7101f728135dd409 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef _ALLOCA_H
#define _ALLOCA_H

#include <sys/cdefs.h>
#include <sys/types.h>

#ifdef __GNUC__
#define alloca(x) __builtin_alloca(x)
#else
void *alloca(size_t size) __THROW;
#endif

#endif