Windows alloca.h header

I do not see the equivalent of alloca.h in Visual C 2010 . How can stack distribution be done in Visual C on Windows? I skip the alloca function.

+12
source share
2 answers

See _alloca . Visual C uses the _ prefix for custom functions in C. headers.

+12
source

There is no alloca.h in the windows. You should

 #include <malloc.h> 

instead of this. The alloca function is

0
source

All Articles