Include stdlib.h for alloca() on OpenBSD

This commit is contained in:
Anton Yabchinskiy 2014-11-20 00:12:01 +03:00
parent 4a1fd94f0d
commit e136033e1c

View file

@ -29,7 +29,7 @@
#ifdef __linux__
#include <alloca.h>
#endif
#ifdef __FreeBSD__
#if defined(__FreeBSD__) || defined(__OpenBSD__)
#include <stdlib.h>
#endif