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
Notes: sideshowbarker 2024-07-17 01:00:06 +09:00
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',
}