From c26a54015179da3096e31a9063a9b6249e7a5ab3 Mon Sep 17 00:00:00 2001 From: John Hodge Date: Sat, 10 May 2014 15:43:17 +0800 Subject: [PATCH] Kernel/libc - Define _SysDebug macro for userland libc debugging --- KernelLand/Kernel/libc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/KernelLand/Kernel/libc.c b/KernelLand/Kernel/libc.c index 2e08a17c..fba30479 100644 --- a/KernelLand/Kernel/libc.c +++ b/KernelLand/Kernel/libc.c @@ -74,6 +74,7 @@ EXPORT(CheckMem); // === CODE === // - Import userland stroi.c file #define _LIB_H_ +#define _SysDebug(f,v...) Log_Debug("libc", f ,## v) #include "../../Usermode/Libraries/libc.so_src/strtoi.c" int ParseInt(const char *string, int *Val) -- 2.20.1