source:
trunk/sys/dietlibc/include/alloca.h
@
86
| Last change on this file since 86 was 1, checked in by , 9 years ago | |
|---|---|
| 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 |
| 12 | void *alloca(size_t size) __THROW; |
| 13 | #endif |
| 14 | |
| 15 | __END_DECLS |
| 16 | |
| 17 | #endif |
Note: See TracBrowser
for help on using the repository browser.
