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

Everywhere: Refer to dlfcn*.h by its non-prefixed name

This commit is contained in:
Tim Schumacher 2022-08-13 20:49:58 +02:00 committed by Linus Groh
parent 9b728fbe56
commit 27bfb81702
8 changed files with 12 additions and 16 deletions

View file

@ -4,7 +4,7 @@
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibDl/dlfcn_integration.h>
#include <dlfcn_integration.h>
// These are used by libdl and are filled in by the dynamic loader.
DlCloseFunction __dlclose;

View file

@ -5,8 +5,8 @@
*/
#include <AK/Assertions.h>
#include <LibDl/dlfcn.h>
#include <LibDl/dlfcn_integration.h>
#include <dlfcn.h>
#include <dlfcn_integration.h>
#include <pthread.h>
#include <regex.h>