diff options
author | bapt <bapt@FreeBSD.org> | 2014-01-25 01:08:35 +0000 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2014-01-25 01:08:35 +0000 |
commit | 4b032c82b7cc2fb11887ac2023f290b6ac5fce31 (patch) | |
tree | e8537731884b4c78623b4d6f1e339f5c4e9d0fe4 | |
parent | 3ed015f5b6167d12591309d4d35ad9a70d30428d (diff) | |
download | FreeBSD-src-4b032c82b7cc2fb11887ac2023f290b6ac5fce31.zip FreeBSD-src-4b032c82b7cc2fb11887ac2023f290b6ac5fce31.tar.gz |
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
-rw-r--r-- | usr.sbin/pkg/config.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usr.sbin/pkg/config.c b/usr.sbin/pkg/config.c index 658ff0a..f6c8e69 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> |