summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibDl/dlfcn_integration.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibDl/dlfcn_integration.h')
-rw-r--r--Userland/Libraries/LibDl/dlfcn_integration.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Libraries/LibDl/dlfcn_integration.h b/Userland/Libraries/LibDl/dlfcn_integration.h
index aa4642d4f3..bf5a20ae60 100644
--- a/Userland/Libraries/LibDl/dlfcn_integration.h
+++ b/Userland/Libraries/LibDl/dlfcn_integration.h
@@ -28,8 +28,8 @@ struct __Dl_info;
typedef struct __Dl_info Dl_info;
typedef Result<void, DlErrorMessage> (*DlCloseFunction)(void*);
-typedef Result<void*, DlErrorMessage> (*DlOpenFunction)(const char*, int);
-typedef Result<void*, DlErrorMessage> (*DlSymFunction)(void*, const char*);
+typedef Result<void*, DlErrorMessage> (*DlOpenFunction)(char const*, int);
+typedef Result<void*, DlErrorMessage> (*DlSymFunction)(void*, char const*);
typedef Result<void, DlErrorMessage> (*DlAddrFunction)(void*, Dl_info*);
extern "C" {