1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 14:18:12 +00:00

Everywhere: Remove "LibC/" includes, add lint-rule against it

This commit is contained in:
Ben Wiederhake 2023-01-03 15:30:44 +01:00 committed by Andrew Kaster
parent d575cfda61
commit 3281050359
21 changed files with 45 additions and 31 deletions

View file

@ -4,11 +4,11 @@
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibC/sys/internals.h>
#include <LibC/unistd.h>
#include <LibELF/AuxiliaryVector.h>
#include <LibELF/DynamicLinker.h>
#include <LibELF/Relocation.h>
#include <sys/internals.h>
#include <unistd.h>
char* __static_environ[] = { nullptr }; // We don't get the environment without some libc workarounds..