summaryrefslogtreecommitdiffstats
path: root/lib/csu/i386/dlfcn.h
diff options
context:
space:
mode:
authorscrappy <scrappy@FreeBSD.org>1996-10-08 01:41:51 +0000
committerscrappy <scrappy@FreeBSD.org>1996-10-08 01:41:51 +0000
commita7a5567c4d28c051575a2ac6d6e9513c2dccf5bb (patch)
treea815d6694b47185efdf4d6de7b89250acf071c72 /lib/csu/i386/dlfcn.h
parent03a8558771c05d6b2dcd172bd53cd6915bfba243 (diff)
downloadFreeBSD-src-a7a5567c4d28c051575a2ac6d6e9513c2dccf5bb.zip
FreeBSD-src-a7a5567c4d28c051575a2ac6d6e9513c2dccf5bb.tar.gz
Fixed prototyping of dlopen/dlsym in dlfcn.h, to match how crt0.c defines
it and link.h prototypes it Error of my ways pointed out by Peter
Diffstat (limited to 'lib/csu/i386/dlfcn.h')
-rw-r--r--lib/csu/i386/dlfcn.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/csu/i386/dlfcn.h b/lib/csu/i386/dlfcn.h
index e1e63ca..51746d6 100644
--- a/lib/csu/i386/dlfcn.h
+++ b/lib/csu/i386/dlfcn.h
@@ -38,8 +38,8 @@
#include <sys/cdefs.h>
__BEGIN_DECLS
-void *dlopen __P((const char *, int));
-void *dlsym __P((void *, const char *));
+void *dlopen __P((char *, int));
+void *dlsym __P((void *, char *));
char *dlerror __P((void));
int dlclose __P((void *));
__END_DECLS
OpenPOWER on IntegriCloud