From 59e264deb4545c1015f7cef7190e5575e836d73d Mon Sep 17 00:00:00 2001 From: Lukas Krickl Date: Sat, 21 Feb 2026 22:24:41 +0100 Subject: [PATCH] chore: removed direct includes of lmud.h --- src/lmud.c | 2 +- src/u_rand.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lmud.c b/src/lmud.c index ccec30a..5e24856 100644 --- a/src/lmud.c +++ b/src/lmud.c @@ -2,7 +2,7 @@ #include #include #include "u_stdio.h" -#include "lmud.h" +#include "u_defs.h" struct lmud_config lmud_global_cfg; diff --git a/src/u_rand.h b/src/u_rand.h index 1d06560..beb920e 100644 --- a/src/u_rand.h +++ b/src/u_rand.h @@ -1,7 +1,7 @@ #ifndef U_RAND_H__ #define U_RAND_H__ -#include "lmud.h" +#include "u_defs.h" void u_srand(u32 s); -- 2.30.2