From 499784a824c541001c2fd52ae95eba88dcfc952b Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 21 Dec 2019 22:22:03 +0100 Subject: Many debugging/serial improvements Sorry for the little information, but I did many things :) --- src/userspace/mlibc/stdlib/htoa.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/userspace/mlibc/stdlib/htoa.c') diff --git a/src/userspace/mlibc/stdlib/htoa.c b/src/userspace/mlibc/stdlib/htoa.c index 098e1c8..579db5d 100644 --- a/src/userspace/mlibc/stdlib/htoa.c +++ b/src/userspace/mlibc/stdlib/htoa.c @@ -1,8 +1,8 @@ #include -#include +#include #include -static const char __HTOA_TABLE[] = "0123456789ABCDEF"; +static const char HTOA_TABLE[] = "0123456789ABCDEF"; char *htoa(uint32_t n) { @@ -11,7 +11,7 @@ char *htoa(uint32_t n) int i = 0; while (n) { - ret[i++] = __HTOA_TABLE[n & 0xF]; + ret[i++] = HTOA_TABLE[n & 0xF]; n >>= 4; } -- cgit v1.2.3