From: Alex Bennée Date: Tue, 4 Mar 2025 22:24:31 +0000 (+0000) Subject: plugins/plugin.h: include queue.h X-Git-Tag: v10.0.0-rc0~16^2~7 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5dd09b8157a132468547ad8a392ec9f8d836c169;p=thirdparty%2Fqemu.git plugins/plugin.h: include queue.h Headers should bring in what they need so don't rely on getting queue.h by side effects. This will help with clean-ups in the following patches. Reviewed-by: Richard Henderson Signed-off-by: Alex Bennée Message-Id: <20250304222439.2035603-25-alex.bennee@linaro.org> --- diff --git a/plugins/plugin.h b/plugins/plugin.h index 30e2299a54..9ed20b5c41 100644 --- a/plugins/plugin.h +++ b/plugins/plugin.h @@ -13,6 +13,7 @@ #define PLUGIN_H #include +#include "qemu/queue.h" #include "qemu/qht.h" #define QEMU_PLUGIN_MIN_VERSION 2