LibC: Convert dbgprintf() => dbgln()

This commit is contained in:
Andreas Kling 2021-02-17 15:39:32 +01:00
commit dffab4e034
Notes: sideshowbarker 2024-07-18 22:11:47 +09:00
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()