aboutsummaryrefslogtreecommitdiff
path: root/lib/csu/i386/dlopen.3
diff options
context:
space:
mode:
authorBrian Somers <brian@FreeBSD.org>1997-11-22 03:34:46 +0000
committerBrian Somers <brian@FreeBSD.org>1997-11-22 03:34:46 +0000
commit9822c98d98f8dd158b97c0f89f13652f308abb45 (patch)
treed330349d4b8f3693191af7e556afa00af53eb71c /lib/csu/i386/dlopen.3
parent18d1eb6776e78d2ab3da88590b527fe3bfbec7f6 (diff)
downloadsrc-9822c98d98f8dd158b97c0f89f13652f308abb45.tar.gz
src-9822c98d98f8dd158b97c0f89f13652f308abb45.zip
const correctness for dl*()
Notes
Notes: svn path=/head/; revision=31342
Diffstat (limited to 'lib/csu/i386/dlopen.3')
-rw-r--r--lib/csu/i386/dlopen.36
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/csu/i386/dlopen.3 b/lib/csu/i386/dlopen.3
index 530d58ebbbe4..b9a987c0aefe 100644
--- a/lib/csu/i386/dlopen.3
+++ b/lib/csu/i386/dlopen.3
@@ -39,10 +39,10 @@
.Sh SYNOPSIS
.Fd #include <dlfcn.h>
.Ft void *
-.Fn dlopen "char *path" "int mode"
+.Fn dlopen "const char *path" "int mode"
.Ft void *
-.Fn dlsym "void *handle" "char *symbol"
-.Ft char *
+.Fn dlsym "void *handle" "const char *symbol"
+.Ft const char *
.Fn dlerror "void"
.Ft int
.Fn dlclose "void *handle"