From 2700519cb3ef9f85b7395a7c781fd5fa48a5570a Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Thu, 4 Jan 2024 14:42:17 -0500 Subject: *: Remove sys/ioctl.h from zebra.h Practically no-one uses this and ioctls are pretty much wrappered. Further wrappering could make this even better. Signed-off-by: Donald Sharp --- zebra/zebra_mpls_openbsd.c | 1 + 1 file changed, 1 insertion(+) (limited to 'zebra/zebra_mpls_openbsd.c') diff --git a/zebra/zebra_mpls_openbsd.c b/zebra/zebra_mpls_openbsd.c index a696275a98..2a3ccc8065 100644 --- a/zebra/zebra_mpls_openbsd.c +++ b/zebra/zebra_mpls_openbsd.c @@ -4,6 +4,7 @@ */ #include +#include #ifdef OPEN_BSD -- cgit v1.2.3 From 0b4ff790636b6c9fe15e861249a4ca59c4a3bd12 Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Thu, 4 Jan 2024 14:50:23 -0500 Subject: *: sys/uio.h does not need to be in zebra.h Signed-off-by: Donald Sharp --- lib/imsg-buffer.c | 1 + lib/zebra.h | 1 - zebra/zebra_mpls_openbsd.c | 1 + 3 files changed, 2 insertions(+), 1 deletion(-) (limited to 'zebra/zebra_mpls_openbsd.c') diff --git a/lib/imsg-buffer.c b/lib/imsg-buffer.c index 4f041ff66e..556e0cf904 100644 --- a/lib/imsg-buffer.c +++ b/lib/imsg-buffer.c @@ -6,6 +6,7 @@ */ #include +#include #include "queue.h" #include "imsg.h" diff --git a/lib/zebra.h b/lib/zebra.h index 8de71d0177..889e68a85c 100644 --- a/lib/zebra.h +++ b/lib/zebra.h @@ -45,7 +45,6 @@ #include #include #include -#include #include #include #include diff --git a/zebra/zebra_mpls_openbsd.c b/zebra/zebra_mpls_openbsd.c index 2a3ccc8065..9cbe6a2e70 100644 --- a/zebra/zebra_mpls_openbsd.c +++ b/zebra/zebra_mpls_openbsd.c @@ -5,6 +5,7 @@ #include #include +#include #ifdef OPEN_BSD -- cgit v1.2.3