Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/include Const'ify dli_saddr in struct _dl_info.
details: https://anonhg.NetBSD.org/src/rev/ad2c63062242
branches: trunk
changeset: 481971:ad2c63062242
user: thorpej <thorpej%NetBSD.org@localhost>
date: Fri Feb 11 00:07:14 2000 +0000
description:
Const'ify dli_saddr in struct _dl_info.
diffstat:
include/dlfcn.h | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diffs (18 lines):
diff -r 180b7b03fe12 -r ad2c63062242 include/dlfcn.h
--- a/include/dlfcn.h Thu Feb 10 23:02:16 2000 +0000
+++ b/include/dlfcn.h Fri Feb 11 00:07:14 2000 +0000
@@ -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 @@
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) */
Home |
Main Index |
Thread Index |
Old Index