From 9ee31530e4f012ad33c9fd70850221a21107945e Mon Sep 17 00:00:00 2001 From: Pavel Odintsov Date: Sun, 3 Dec 2023 14:02:25 +0300 Subject: [PATCH] Added missing include to get access to integer types --- src/xdp_plugin/xdp_kernel.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/xdp_plugin/xdp_kernel.c b/src/xdp_plugin/xdp_kernel.c index 9951e37..7807613 100644 --- a/src/xdp_plugin/xdp_kernel.c +++ b/src/xdp_plugin/xdp_kernel.c @@ -1,6 +1,8 @@ // SPDX-License-Identifier: GPL-2.0 #define KBUILD_MODNAME "foo" -#include "bpf/bpf_helpers.h" + +#include +#include #include //