AK: Remove unused kprintf macro

This hasn't been used for quite some time.
This commit is contained in:
Andreas Kling 2021-02-20 17:20:42 +01:00
parent 8d98051551
commit 4d9ce42532

View file

@ -40,7 +40,6 @@ int snprintf(char* buffer, size_t, const char* fmt, ...) __attribute__((format(p
# endif
#else
# include <stdio.h>
# define kprintf printf
inline int dbgputstr(const char* characters, ssize_t length)
{
fwrite(characters, 1, length, stderr);