7 * Temporary memory allocation
14 * Allocate temporary memory from the stack
16 * @v size Size to allocate
17 * @ret ptr Allocated memory
19 * This memory will be freed automatically when the containing
20 * function returns. There are several caveats regarding use of
21 * alloca(); use it only if you already know what they are.
23 #define alloca(size) __builtin_alloca ( size )
25 #endif /* _ALLOCA_H */