diff options
author | Andreas Färber <andreas.faerber@web.de> | 2014-03-13 14:27:59 +0100 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2014-03-13 14:34:16 +0000 |
commit | 41975b269cf1503c735f8233f8ef373d74f1f137 (patch) | |
tree | bdaec65beff477a618096566a47dc4b964db32c0 /os-posix.c | |
parent | be86c53c058d75fc3938b1b54f363259f282b3d5 (diff) |
oslib-posix: Fix build on FreeBSD
Commit 10f5bff622cad71645e22c027b77ac31e51008ef (util: Split out
exec_dir from os_find_datadir) moved code from os-posix.c to
util/oslib-posix.c but forgot to move a FreeBSD #include alongside,
needed for CTL_KERN among others.
Cc: Fam Zheng <famz@redhat.com>
Cc: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Andreas Färber <andreas.faerber@web.de>
Message-id: 1394717279-23406-1-git-send-email-andreas.faerber@web.de
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'os-posix.c')
-rw-r--r-- | os-posix.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/os-posix.c b/os-posix.c index 6187301481..cb2a7f7ad7 100644 --- a/os-posix.c +++ b/os-posix.c @@ -44,10 +44,6 @@ #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; |