From 3031e96abf08819abc5394cd6d0d35748fee3c9c Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Mon, 28 Jul 2025 17:40:27 +0200 Subject: [PATCH] os: xprintf: fix includes It's better coding style to include the header with prototypes for our own functions directly, instead of relying on it being included indirectly. Signed-off-by: Enrico Weigelt, metux IT consult --- os/xprintf.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/os/xprintf.c b/os/xprintf.c index 9c31299ce0..5f929dd335 100644 --- a/os/xprintf.c +++ b/os/xprintf.c @@ -59,12 +59,14 @@ #include #include -#include "os.h" #include #include #include #include +#include "include/os.h" +#include "include/Xprintf.h" + /** * Varargs sprintf that allocates a string buffer the right size for * the pattern & data provided and prints the requested data to it.