AK: Make dbgprintf() and dbgputstr() go to stderr on non-Serenity hosts

This commit is contained in:
Andreas Kling 2020-04-06 10:21:54 +02:00
commit 20e58c5513
Notes: sideshowbarker 2024-07-19 07:52:07 +09:00
2 changed files with 3 additions and 3 deletions

View file

@ -45,6 +45,6 @@ inline int dbgputstr(const char (&array)[N])
#else
# include <stdio.h>
# define kprintf printf
# define dbgprintf printf
# define dbgputstr(characters, length) fwrite(characters, 1, length, stdout)
# define dbgprintf(...) fprintf(stderr, __VA_ARGS__)
# define dbgputstr(characters, length) fwrite(characters, 1, length, stderr)
#endif