summaryrefslogtreecommitdiff
path: root/os2/dlfcn.h
diff options
context:
space:
mode:
Diffstat (limited to 'os2/dlfcn.h')
-rw-r--r--os2/dlfcn.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/os2/dlfcn.h b/os2/dlfcn.h
index c2feee6000..80e5aac52e 100644
--- a/os2/dlfcn.h
+++ b/os2/dlfcn.h
@@ -1,4 +1,4 @@
-void *dlopen(char *path, int mode);
-void *dlsym(void *handle, char *symbol);
+void *dlopen(const char *path, int mode);
+void *dlsym(void *handle, const char *symbol);
char *dlerror(void);
int dlclose(void *handle);