Comment 0 for bug 2019954

Revision history for this message
Sven M. Hallberg (pesco) wrote :

Noticed when porting to OpenBSD:

The files normalize.c and validate.c in xorn/tests/storage/ use the alloca() function and include <alloca.h> for its prototype. That header is specific to GCC and not available at least on OpenBSD. The attached patches change the include to <stdlib.h> which works on both systems.