diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2016-04-27 12:27:04 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2016-04-27 12:27:04 +0000 |
commit | 03ca33f6ae36bacdbdee8d4be7b7f30c4b1d920b (patch) | |
tree | 73927d0f6f7e01e808e5fe9354c70a4dea818e83 /sys | |
parent | bd3488bd96b5418f45eb8f9766ba3dd3a6035019 (diff) |
mbuf tags are in an SLIST, so we need queue.h after all.
found by deraadt@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/mbuf.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/sys/mbuf.h b/sys/sys/mbuf.h index 27c4471b01c..da2f544adeb 100644 --- a/sys/sys/mbuf.h +++ b/sys/sys/mbuf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: mbuf.h,v 1.212 2016/04/15 05:05:21 dlg Exp $ */ +/* $OpenBSD: mbuf.h,v 1.213 2016/04/27 12:27:03 dlg Exp $ */ /* $NetBSD: mbuf.h,v 1.19 1996/02/09 18:25:14 christos Exp $ */ /* @@ -35,6 +35,8 @@ #ifndef _SYS_MBUF_H_ #define _SYS_MBUF_H_ +#include <sys/queue.h> + /* * Constants related to network buffer management. * MCLBYTES must be no larger than PAGE_SIZE (the software page size) and, |