Use static buffers for mprintf and debug_printf, cut down on library dependencies
All checks were successful
Build ISO image / build-and-deploy (push) Successful in 40s
Build documentation / build-and-deploy (push) Successful in 26s

This commit is contained in:
2026-04-03 17:38:39 +02:00
parent 6dd7a7c654
commit 342f39b748
11 changed files with 82 additions and 58 deletions

View File

@@ -5,8 +5,8 @@ $(eval $(call add_lib,libprocess))
$(eval $(call add_lib,libstring))
$(eval $(call add_lib,libdebugconsole))
$(eval $(call add_lib,libaux))
$(eval $(call add_lib,libmalloc))
$(eval $(call add_lib,libkb))
$(eval $(call add_lib,libmalloc))
cflags += -DPRINTF_INCLUDE_CONFIG_H=1

View File

@@ -1,7 +1,6 @@
#include <debugconsole.h>
#include <kb.h>
#include <limits.h>
#include <malloc.h>
#include <process.h>
#include <stddef.h>
#include <stdint.h>