remove direction inclusion of alloca.h, use stdlib.h instead
In several places in LALSuite the alloca.h
header file is included for the alloca()
function, the alloca.h
header is not needed as stdlib.h
includes alloca.h
on platforms where it is appropriate. Some platforms, such as OpenBSD, do not have alloca.h
so this breaks the build on these platforms.
We should remove the inclusion of alloca.h
and ensure that stdlib.h
is included instead.