Meta: Remove references to LibC

This commit is contained in:
Tim Ledbetter
2024-05-31 09:05:59 +01:00
committed by Andreas Kling
parent 3e56835611
commit d147ed8549
3 changed files with 0 additions and 4 deletions

View File

@@ -31,7 +31,6 @@ First, make sure you have a working toolchain and can build and run SerenityOS.
./
Userland/
Userland/Libraries/
Userland/Libraries/LibC/
Userland/Libraries/LibSystem/
Userland/Services/
Toolchain/Local/x86_64/x86_64-pc-serenity/include/c++/13.1.0

View File

@@ -72,7 +72,6 @@ following ``c_cpp_properties.json`` to circumvent some errors. Even with the con
"${workspaceFolder}/Build/x86_64/Root/usr/include/**",
"${workspaceFolder}/Userland",
"${workspaceFolder}/Userland/Libraries",
"${workspaceFolder}/Userland/Libraries/LibC",
"${workspaceFolder}/Userland/Services",
"${workspaceFolder}/Toolchain/Local/x86_64/x86_64-pc-serenity/include/c++/**"
],
@@ -100,7 +99,6 @@ following ``c_cpp_properties.json`` to circumvent some errors. Even with the con
"${workspaceFolder}/Build/x86_64/Root/usr/include/**",
"${workspaceFolder}/Userland",
"${workspaceFolder}/Userland/Libraries",
"${workspaceFolder}/Userland/Libraries/LibC",
"${workspaceFolder}/Userland/Services",
"${workspaceFolder}/Toolchain/Local/x86_64/x86_64-pc-serenity/include/c++/**"
],

View File

@@ -34,7 +34,6 @@ LICENSE_HEADER_CHECK_EXCLUDES = {
# We check that "#pragma once" is present
PRAGMA_ONCE_STRING = '#pragma once'
PRAGMA_ONCE_CHECK_EXCLUDES = {
'Userland/Libraries/LibC/assert.h',
'Ladybird/AppKit/System/Detail/Header.h',
'Ladybird/AppKit/System/Detail/Footer.h',
}