Home
Main website
Display Sidebar
Hide Ads
Recent Changes
View Source:
alloca(3)
Edit
PageHistory
Diff
Info
LikePages
ALLOCA !!!ALLOCA NAME SYNOPSIS DESCRIPTION RETURN VALUE CONFORMING TO BUGS SEE ALSO ---- !!NAME alloca - memory allocator !!SYNOPSIS __#include __ __void *alloca( size_t__ ''size''__);__ !!DESCRIPTION The __alloca__ function allocates ''size'' bytes of space in the stack frame of the caller. This temporary space is automatically freed on return. !!RETURN VALUE The __alloca__ function returns a pointer to the beginning of the allocated space. If the allocation failed, a __NULL__ pointer is returned. !!CONFORMING TO There is evidence that the __alloca__ function appeared in 32v, pwb, pwb.2, 3bsd, and 4bsd. There is a man page for it in BSD 4.3. Linux uses the GNU version. !!BUGS The __alloca__ function is machine dependent. !!SEE ALSO brk(2), pagesize(2), calloc(3), malloc(3), realloc(3) ----
One page links to
alloca(3)
:
Man3a
This page is a man page (or other imported legacy content). We are unable to automatically determine the license status of this page.