summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudio Jeker <claudio@cvs.openbsd.org>2022-08-30 16:00:22 +0000
committerClaudio Jeker <claudio@cvs.openbsd.org>2022-08-30 16:00:22 +0000
commit127b702bf2f1f0e74711797d85aa735a1b80792a (patch)
treef6d40fae3d4710c0dd13676b7b1e1a68e9bf366d
parentfa668d62a7472d839c43e64a62618f74d13c1b1b (diff)
Add missing #include <sys/queue.h>
-rw-r--r--usr.sbin/bgpd/kroute.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/bgpd/kroute.c b/usr.sbin/bgpd/kroute.c
index fa184506bd3..03c3da403a4 100644
--- a/usr.sbin/bgpd/kroute.c
+++ b/usr.sbin/bgpd/kroute.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: kroute.c,v 1.297 2022/08/30 12:49:13 claudio Exp $ */
+/* $OpenBSD: kroute.c,v 1.298 2022/08/30 16:00:21 claudio Exp $ */
/*
* Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
@@ -18,6 +18,7 @@
*/
#include <sys/types.h>
+#include <sys/queue.h>
#include <sys/tree.h>
#include <sys/ioctl.h>
#include <sys/socket.h>