Header alloca.h in Windows
There's no alloca.h in windows. You should
#include <malloc.h>
instead. The alloca function is there
See _alloca
. Visual C uses an _ prefix for non-standard functions in the C headers.
There's no alloca.h in windows. You should
#include <malloc.h>
instead. The alloca function is there
See _alloca
. Visual C uses an _ prefix for non-standard functions in the C headers.