1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 09:47:35 +00:00

AK+LibC: Remove dbgprintf() :^)

Everything has been moved to dbgln() or other AK::Format-based APIs.
We can finally get rid of this old thing.
This commit is contained in:
Andreas Kling 2021-02-20 17:17:30 +01:00
parent 542d8591e0
commit 8d98051551
4 changed files with 0 additions and 20 deletions

View file

@ -93,8 +93,6 @@ int vsprintf(char* buffer, const char* fmt, va_list) __attribute__((format(print
int vsnprintf(char* buffer, size_t, const char* fmt, va_list) __attribute__((format(printf, 3, 0)));
int fprintf(FILE*, const char* fmt, ...) __attribute__((format(printf, 2, 3)));
int printf(const char* fmt, ...) __attribute__((format(printf, 1, 2)));
int dbgprintf(const char* fmt, ...) __attribute__((format(printf, 1, 2)));
int vdbgprintf(const char* fmt, va_list ap);
void dbgputch(char);
int dbgputstr(const char*, ssize_t);
int sprintf(char* buffer, const char* fmt, ...) __attribute__((format(printf, 2, 3)));