AK: Fix inconsistent signature for dbgputstr()

This commit is contained in:
Andreas Kling 2020-05-23 13:58:48 +02:00
parent a0d3c03950
commit 8fe4512f8e
Notes: sideshowbarker 2024-07-19 06:13:11 +09:00

View file

@ -33,7 +33,7 @@
# include <AK/Types.h>
extern "C" {
int dbgprintf(const char* fmt, ...);
int dbgputstr(const char*, int);
int dbgputstr(const char*, ssize_t);
int sprintf(char* buf, const char* fmt, ...);
}
template<size_t N>