From d91098ef48e49dc5fd2be3ca33a26ff389b9f2d9 Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Mon, 18 Mar 2024 15:11:08 +0100 Subject: [PATCH] xfree86: common: fix missing include of It's much cleaner to always include directly what one needs, instead of relying on very indirect including. Signed-off-by: Enrico Weigelt, metux IT consult Part-of: --- hw/xfree86/common/xf86Configure.c | 2 ++ hw/xfree86/common/xf86Events.c | 2 ++ 2 files changed, 4 insertions(+) diff --git a/hw/xfree86/common/xf86Configure.c b/hw/xfree86/common/xf86Configure.c index 4347f6d2f..52594c692 100644 --- a/hw/xfree86/common/xf86Configure.c +++ b/hw/xfree86/common/xf86Configure.c @@ -27,6 +27,8 @@ #include #endif +#include + #include "xf86.h" #include "xf86Config.h" #include "xf86_OSlib.h" diff --git a/hw/xfree86/common/xf86Events.c b/hw/xfree86/common/xf86Events.c index 404c37e46..6a349f4c6 100644 --- a/hw/xfree86/common/xf86Events.c +++ b/hw/xfree86/common/xf86Events.c @@ -53,9 +53,11 @@ #include #endif +#include #include #include #include + #include "misc.h" #include "xf86.h" #include "xf86Priv.h"