From: Lukas Krickl Date: Sat, 21 Feb 2026 21:24:41 +0000 (+0100) Subject: chore: removed direct includes of lmud.h X-Git-Url: https://git.krickl.dev/?a=commitdiff_plain;h=refs%2Fheads%2Fmaster;p=lmud%2F.git chore: removed direct includes of lmud.h --- 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);