util: do not include alloca on OpenBSD

Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Vladimir Kirillov 2008-08-23 12:17:39 +03:00 committed by Julien Danjou
parent e753be131d
commit 6fc677c441
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@
#include <stdarg.h>
#include <assert.h>
#ifndef __FreeBSD__
#if !(defined (__FreeBSD__) || defined(__OpenBSD__))
#include <alloca.h>
#endif