next up previous contents index
Next: 9.4.3 assert.h: program diagnostics Up: 9.4 Header Files Previous: 9.4.1 a.out.h: semi-standard a.out

9.4.2 alloca.h: explicit stack-based memory allocation

     

DESCRIPTION

This header file defines the alloca pseudo-function, which allows C code to dynamically allocate memory on the calling function's stack frame, which will be freed automatically when the function returns. This header is not ANSI or POSIX but is a fairly well-established tradition. The implementation of this function currently depends on being compiled with gcc.



University of Utah Flux Research Group