diff options
author | Marc Espie <espie@cvs.openbsd.org> | 1999-12-09 18:10:25 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 1999-12-09 18:10:25 +0000 |
commit | 046c3d1156d795ac61465e04ca8b44a3c0744870 (patch) | |
tree | 984cc37fa7349fa5abfc0ccc8a8c7861d3595926 /share/man/man3/dlfcn.3 | |
parent | d7976764a996c5568f4e7422d4db87b7ebaa9c09 (diff) |
dlopen and dlsym take const char * parameters.
Fix prototypes, propagate const where applicable.
Diffstat (limited to 'share/man/man3/dlfcn.3')
-rw-r--r-- | share/man/man3/dlfcn.3 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/man/man3/dlfcn.3 b/share/man/man3/dlfcn.3 index 2ea5f7808c3..fb225f878ea 100644 --- a/share/man/man3/dlfcn.3 +++ b/share/man/man3/dlfcn.3 @@ -37,7 +37,7 @@ .Sh SYNOPSIS .Fd #include <dlfcn.h> .Ft "void *" -.Fn dlopen "char *path" "int mode" +.Fn dlopen "const char *path" "int mode" .Ft "int" .Fn dlclose "void *handle" .Ft "void *" |