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
commit 4d9ce42532
Notes: sideshowbarker 2024-07-18 22:05:46 +09:00

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);