summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorthorpej <thorpej@NetBSD.org>2000-02-11 00:07:14 +0000
committerthorpej <thorpej@NetBSD.org>2000-02-11 00:07:14 +0000
commite8050aefef9cc1960e020ea26efc9c868f3ab483 (patch)
treef4cb8ece87079fcaedc22e02542543178ebf74cc /include
parent5f9e257c5abf4c636599cba2e8e4efd7549e45a8 (diff)
Const'ify dli_saddr in struct _dl_info.
Diffstat (limited to 'include')
-rw-r--r--include/dlfcn.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/dlfcn.h b/include/dlfcn.h
index b185877dead..8461e1536ef 100644
--- a/include/dlfcn.h
+++ b/include/dlfcn.h
@@ -1,4 +1,4 @@
-/* $NetBSD: dlfcn.h,v 1.11 2000/02/08 16:22:59 scottb Exp $ */
+/* $NetBSD: dlfcn.h,v 1.12 2000/02/11 00:07:14 thorpej Exp $ */
/*-
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -46,7 +46,7 @@ typedef struct _dl_info {
const char *dli_fname; /* File defining the symbol */
void *dli_fbase; /* Base address */
const char *dli_sname; /* Symbol name */
- void *dli_saddr; /* Symbol address */
+ const void *dli_saddr; /* Symbol address */
} Dl_info;
#endif /* !defined(_XOPEN_SOURCE) */