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

LibC: Don't include C++ headers in C system headers

This commit is contained in:
Gunnar Beutner 2021-07-27 16:49:27 +02:00 committed by Andreas Kling
parent c69e147b8b
commit 78c81854cc
2 changed files with 1 additions and 1 deletions

View file

@ -4,6 +4,7 @@
* SPDX-License-Identifier: BSD-2-Clause * SPDX-License-Identifier: BSD-2-Clause
*/ */
#include <AK/Format.h>
#include <wctype.h> #include <wctype.h>
extern "C" { extern "C" {

View file

@ -6,7 +6,6 @@
#pragma once #pragma once
#include <AK/Format.h>
#include <assert.h> #include <assert.h>
#include <ctype.h> #include <ctype.h>
#include <wchar.h> #include <wchar.h>