View | Details | Raw Unified | Return to bug 56388
Collapse All | Expand All

(-)contrib/bind/lib/isc/bitncmp.mdoc (+1 lines)
Lines 22-27 Link Here
22
.Nm bitncmp 
22
.Nm bitncmp 
23
.Nd compare bit masks
23
.Nd compare bit masks
24
.Sh SYNOPSIS
24
.Sh SYNOPSIS
25
.Fd #include <isc/misc.h>
25
.Ft int
26
.Ft int
26
.Fn bitncmp "const void *l" "const void *r" "int n"
27
.Fn bitncmp "const void *l" "const void *r" "int n"
27
.Sh DESCRIPTION
28
.Sh DESCRIPTION
(-)contrib/bind/lib/isc/heap.mdoc (-1 / +1 lines)
Lines 30-36 Link Here
30
.Nm heap_for_each 
30
.Nm heap_for_each 
31
.Nd heap implementation of priority queues
31
.Nd heap implementation of priority queues
32
.Sh SYNOPSIS
32
.Sh SYNOPSIS
33
.Fd #include \&"heap.h\&"
33
.Fd #include <isc/heap.h>
34
.Ft heap_context    
34
.Ft heap_context    
35
.Fn heap_new "heap_higher_priority_func higher_priority" \
35
.Fn heap_new "heap_higher_priority_func higher_priority" \
36
"heap_index_func index" "int array_size_increment"
36
"heap_index_func index" "int array_size_increment"
(-)contrib/bind/lib/isc/memcluster.mdoc (-1 / +1 lines)
Lines 28-34 Link Here
28
.Nm memstats 
28
.Nm memstats 
29
.Nd memory allocation/deallocation system
29
.Nd memory allocation/deallocation system
30
.Sh SYNOPSIS
30
.Sh SYNOPSIS
31
.Fd #include \&<isc/memcluster.h\&>
31
.Fd #include <isc/memcluster.h>
32
.Ft void * 
32
.Ft void * 
33
.Fn memget "size_t size"
33
.Fn memget "size_t size"
34
.Ft void 
34
.Ft void 
(-)contrib/bind/lib/isc/tree.mdoc (+1 lines)
Lines 27-32 Link Here
27
.Nm tree_trav
27
.Nm tree_trav
28
.Nd balanced binary tree routines
28
.Nd balanced binary tree routines
29
.Sh SYNOPSIS
29
.Sh SYNOPSIS
30
.Fd #include <isc/tree.h>
30
.Ft void
31
.Ft void
31
.Fn tree_init "void **tree"
32
.Fn tree_init "void **tree"
32
.Ft void *
33
.Ft void *
(-)lib/libisc/Makefile (-11 lines)
Lines 128-141 Link Here
128
		tree.3 tree_trav.3
128
		tree.3 tree_trav.3
129
129
130
.include <bsd.lib.mk>
130
.include <bsd.lib.mk>
131
132
# This has to come after the .include <bsd.lib.mk>. Not sure why.
133
134
.SUFFIXES:	.mdoc .3
135
.mdoc.3:
136
		sed -e 's/@INDOT@//g' \
137
		    -e 's/@SYSCALL_EXT@/2/g' \
138
		    -e 's/@SYS_OPS_EXT@/8/g' \
139
		    -e 's/^.Fd #include .*heap.h.*/.Fd #include <isc\/heap.h>/' \
140
		    < ${.ALLSRC} > ${.TARGET}
141

Return to bug 56388