|
iPXE
|
Temporary memory allocation. More...
#include <stdint.h>Go to the source code of this file.
Macros | |
| #define | alloca(size) |
| Allocate temporary memory from the stack. | |
Temporary memory allocation.
Definition in file alloca.h.
| #define alloca | ( | size | ) |
Allocate temporary memory from the stack.
| size | Size to allocate |
| ptr | Allocated memory |
This memory will be freed automatically when the containing function returns. There are several caveats regarding use of alloca(); use it only if you already know what they are.