Clone
Gustaf Neumann <neumann@wu-wien.ac.at>
committed
on 17 Mar 19
added an additional variant of ALLOC_ON_STACK
The new version does not use alloca(), it does not use VLA
and it does not boat the stack in c… Show more
added an additional variant of ALLOC_ON_STACK

The new version does not use alloca(), it does not use VLA

and it does not boat the stack in case huge vectors are to be processed.

It uses a plain array up to a certain size and switches to malloc()

above this size.

Show less

2.3 + 14 more