source:
bootcd/isolinux/syslinux-6.03/com32/include/alloca.h
Last change on this file was e16e8f2, checked in by , 3 years ago | |
---|---|
|
|
File size: 171 bytes |
Line | |
---|---|
1 | /* |
2 | * alloca.h |
3 | * |
4 | * Just call the builtin alloca() function |
5 | */ |
6 | |
7 | #ifndef _ALLOCA_H |
8 | #define _ALLOCA_H |
9 | |
10 | #define alloca(size) __builtin_alloca(size) |
11 | |
12 | #endif /* _ALLOCA_H */ |
Note: See TracBrowser
for help on using the repository browser.