summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibC
diff options
context:
space:
mode:
authorTim Schumacher <timschumi@gmx.de>2022-08-13 20:49:58 +0200
committerLinus Groh <mail@linusgroh.de>2022-09-05 10:12:02 +0100
commit27bfb8170239bc27b57734e8adc4cfad1e0413f8 (patch)
tree99af33d8019323eeb18f55a8fb760bebcf412f00 /Userland/Libraries/LibC
parent9b728fbe56012d3f51cf4325c0a7298f160cdb12 (diff)
downloadserenity-27bfb8170239bc27b57734e8adc4cfad1e0413f8.zip
Everywhere: Refer to `dlfcn*.h` by its non-prefixed name
Diffstat (limited to 'Userland/Libraries/LibC')
-rw-r--r--Userland/Libraries/LibC/dlfcn.cpp2
-rw-r--r--Userland/Libraries/LibC/regex.cpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/Userland/Libraries/LibC/dlfcn.cpp b/Userland/Libraries/LibC/dlfcn.cpp
index 41c13a5f92..df611300e1 100644
--- a/Userland/Libraries/LibC/dlfcn.cpp
+++ b/Userland/Libraries/LibC/dlfcn.cpp
@@ -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;
diff --git a/Userland/Libraries/LibC/regex.cpp b/Userland/Libraries/LibC/regex.cpp
index 394abb708a..f4ed51fc93 100644
--- a/Userland/Libraries/LibC/regex.cpp
+++ b/Userland/Libraries/LibC/regex.cpp
@@ -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>