Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/share/man/man3 sync with code



details:   https://anonhg.NetBSD.org/src/rev/7b0fb51df0c7
branches:  trunk
changeset: 777391:7b0fb51df0c7
user:      yamt <yamt%NetBSD.org@localhost>
date:      Fri Feb 17 08:22:47 2012 +0000

description:
sync with code
(remove const quals)

diffstat:

 share/man/man3/rbtree.3 |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (36 lines):

diff -r bfc714062a6f -r 7b0fb51df0c7 share/man/man3/rbtree.3
--- a/share/man/man3/rbtree.3   Fri Feb 17 08:20:55 2012 +0000
+++ b/share/man/man3/rbtree.3   Fri Feb 17 08:22:47 2012 +0000
@@ -1,4 +1,4 @@
-.\"     $NetBSD: rbtree.3,v 1.5 2011/03/28 13:46:14 ahoka Exp $
+.\"     $NetBSD: rbtree.3,v 1.6 2012/02/17 08:22:47 yamt Exp $
 .\"
 .\" Copyright (c) 2010 The NetBSD Foundation, Inc.
 .\" All rights reserved.
@@ -27,7 +27,7 @@
 .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 .\" POSSIBILITY OF SUCH DAMAGE.
 .\"
-.Dd March 17, 2011
+.Dd February 17, 2012
 .Dt RBTREE 3
 .Os
 .Sh NAME
@@ -74,7 +74,7 @@
 .It Vt rb_tree_t
 A red-black tree.
 .It Vt typedef signed int \
-(*const rbto_compare_nodes_fn)(void *, const void *, const void *);
+(* rbto_compare_nodes_fn)(void *, const void *, const void *);
 The node-comparison operator.
 Defines an ordering on nodes.
 Returns a negative value if the first node precedes the second node.
@@ -82,7 +82,7 @@
 Returns 0 if the first node and the second are identical according
 to the ordering.
 .It Vt typedef signed int \
-(*const rbto_compare_key_fn)(void *, const void *, const void *);
+(* rbto_compare_key_fn)(void *, const void *, const void *);
 The node-key comparison operator.
 Defines the order of nodes and keys.
 Returns a negative value if the node precedes the key.



Home | Main Index | Thread Index | Old Index