aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2014-01-20 22:54:11 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2014-01-20 22:54:11 +0000
commita351c93d9593158bf42db491fc360e042c7b7817 (patch)
tree8b5d2c1e89bbf49d216e1093c55b9ea5a9d17428
parentf76075f8078a8f1ab1b86e123e85cecc5ba2b83b (diff)
downloadsrc-a351c93d9593158bf42db491fc360e042c7b7817.tar.gz
src-a351c93d9593158bf42db491fc360e042c7b7817.zip
Implicit include of sys/queue.h instead of relying on gelf.h/libelf.h to bring it
Newer version of gelf.h and libelf.h does not include sys/queue.h anymore Submitted by: kaiw MFC after: 3 days
Notes
Notes: svn path=/head/; revision=260942
-rw-r--r--usr.sbin/pkg/config.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/usr.sbin/pkg/config.c b/usr.sbin/pkg/config.c
index 658ff0a3cc36..f6c8e69aff9b 100644
--- a/usr.sbin/pkg/config.c
+++ b/usr.sbin/pkg/config.c
@@ -29,6 +29,7 @@
__FBSDID("$FreeBSD$");
#include <sys/param.h>
+#include <sys/queue.h>
#include <sys/sbuf.h>
#include <sys/elf_common.h>
#include <sys/endian.h>