1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 01:47:34 +00:00

LibC: Convert dbgprintf() => dbgln()

This commit is contained in:
Andreas Kling 2021-02-17 15:39:32 +01:00
parent 5a595ef134
commit dffab4e034
4 changed files with 13 additions and 24 deletions

View file

@ -1194,12 +1194,12 @@ int vfscanf(FILE* stream, const char* fmt, va_list ap)
void flockfile([[maybe_unused]] FILE* filehandle)
{
dbgprintf("FIXME: Implement flockfile()\n");
dbgln("FIXME: Implement flockfile()");
}
void funlockfile([[maybe_unused]] FILE* filehandle)
{
dbgprintf("FIXME: Implement funlockfile()\n");
dbgln("FIXME: Implement funlockfile()");
}
FILE* tmpfile()