From de47eb59bb829423b1d0f47ba13099073999b3cb Mon Sep 17 00:00:00 2001 From: Nicolas Planel Date: Wed, 29 Oct 2003 16:07:11 +0000 Subject: Corporate Server 2.1.1 release --- mdk-stage1/dietlibc/include/alloca.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'mdk-stage1/dietlibc/include/alloca.h') diff --git a/mdk-stage1/dietlibc/include/alloca.h b/mdk-stage1/dietlibc/include/alloca.h index e69de29bb..41f92354f 100644 --- a/mdk-stage1/dietlibc/include/alloca.h +++ b/mdk-stage1/dietlibc/include/alloca.h @@ -0,0 +1,13 @@ +#ifndef _ALLOCA_H +#define _ALLOCA_H + +#include +#include + +#ifdef __GNUC__ +#define alloca(x) __builtin_alloca(x) +#else +void *alloca(size_t size) __THROW; +#endif + +#endif -- cgit v1.2.1