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

AK: Clean up includes around printf/vdbgprintf

This commit is contained in:
Ben Wiederhake 2021-02-06 22:13:49 +01:00 committed by Andreas Kling
parent c6a42ab5c3
commit de947acaf9
2 changed files with 2 additions and 3 deletions

View file

@ -94,6 +94,7 @@ int vsnprintf(char* buffer, size_t, const char* fmt, va_list) __attribute__((for
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)));