source: trunk/sys/dietlibc/include/alloca.h @ 1

Last change on this file since 1 was 1, checked in by alain, 7 years ago

First import

File size: 222 bytes
Line 
1#ifndef _ALLOCA_H
2#define _ALLOCA_H
3
4#include <sys/cdefs.h>
5#include <sys/types.h>
6
7__BEGIN_DECLS
8
9#ifdef __GNUC__
10#define alloca(x) __builtin_alloca(x)
11#else
12void *alloca(size_t size) __THROW;
13#endif
14
15__END_DECLS
16
17#endif
Note: See TracBrowser for help on using the repository browser.