os-posix: Fix build on FreeBSD

Add an include for a header required to build on recent FreeBSD.

Signed-off-by: Nathan Whitehorn <nwhitehorn@freebsd.org>
Signed-off-by: Andreas Frber <andreas.faerber@web.de>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
stable-1.1
Nathan Whitehorn 2012-04-14 16:01:00 +02:00 committed by Anthony Liguori
parent 7c7db75576
commit 15fdaee3c5
1 changed files with 4 additions and 0 deletions

View File

@ -44,6 +44,10 @@
#include <sys/prctl.h>
#endif
#ifdef __FreeBSD__
#include <sys/sysctl.h>
#endif
static struct passwd *user_pwd;
static const char *chroot_dir;
static int daemonize;