From: John Hodge Date: Sat, 10 May 2014 07:43:17 +0000 (+0800) Subject: Kernel/libc - Define _SysDebug macro for userland libc debugging X-Git-Url: https://git.ucc.asn.au/?p=tpg%2Facess2.git;a=commitdiff_plain;h=c26a54015179da3096e31a9063a9b6249e7a5ab3 Kernel/libc - Define _SysDebug macro for userland libc debugging --- 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)