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

Kernel: Remove includes to LibC stdarg definitions

We don't actually need the va_list and other stdarg definitions in the
kernel, because we actually don't use the "pure" printf interface in any
kernel code at all, but we retain the snprintf declaration because the
libstdc++ library still need it to be declared and extern'ed.
This commit is contained in:
Liav A 2023-02-26 18:33:59 +02:00 committed by Andrew Kaster
parent 5416a37fde
commit 77486a0d08
3 changed files with 2 additions and 42 deletions

View file

@ -9,7 +9,6 @@
#include <AK/StringBuilder.h>
#include <AK/StringView.h>
#include <Kernel/KBuffer.h>
#include <stdarg.h>
namespace Kernel {