summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorscottr <scottr@NetBSD.org>1997-01-03 22:37:58 +0000
committerscottr <scottr@NetBSD.org>1997-01-03 22:37:58 +0000
commit372fe2ff92795b47efdc6bd04f1c828a0c813ac8 (patch)
tree2f451dfd16666a82932e0baa12bde3b7e16f8567 /include
parentd71a874906d7b4a82ccb25aee21586af1c1a6787 (diff)
Catch up with const changes to dlopen() and dlsym() prototypes in
<dlfcn.h>. Tested on i386 and hp300 for crt0.o and ld.so, verified other references by inspection.
Diffstat (limited to 'include')
-rw-r--r--include/link_aout.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/link_aout.h b/include/link_aout.h
index 9ab289ffbde..cf98886bfbb 100644
--- a/include/link_aout.h
+++ b/include/link_aout.h
@@ -1,4 +1,4 @@
-/* $NetBSD: link_aout.h,v 1.10 1996/01/09 00:00:11 pk Exp $ */
+/* $NetBSD: link_aout.h,v 1.11 1997/01/03 22:39:03 scottr Exp $ */
/*
* Copyright (c) 1993 Paul Kranenburg
@@ -166,9 +166,9 @@ struct so_debug {
* Entry points into ld.so - user interface to the run-time linker.
*/
struct ld_entry {
- void *(*dlopen) __P((char *, int));
+ void *(*dlopen) __P((const char *, int));
int (*dlclose) __P((void *));
- void *(*dlsym) __P((void *, char *));
+ void *(*dlsym) __P((void *, const char *));
int (*dlctl) __P((void *, int, void *));
void (*dlexit) __P((void));
void (*dlrsrvd[3]) __P((void));