Module Name: src
Committed By: jruoho
Date: Thu Dec 16 10:40:04 UTC 2010
Modified Files:
src/share/man/man3: __CONCAT.3 __UNCONST.3 __arraycount.3 bits.3
Log Message:
Xref cdefs(3).
To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/share/man/man3/__CONCAT.3 \
src/share/man/man3/__arraycount.3
cvs rdiff -u -r1.4 -r1.5 src/share/man/man3/__UNCONST.3
cvs rdiff -u -r1.9 -r1.10 src/share/man/man3/bits.3
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/share/man/man3/__CONCAT.3
diff -u src/share/man/man3/__CONCAT.3:1.5 src/share/man/man3/__CONCAT.3:1.6
--- src/share/man/man3/__CONCAT.3:1.5 Thu May 13 21:03:33 2010
+++ src/share/man/man3/__CONCAT.3 Thu Dec 16 10:40:04 2010
@@ -1,4 +1,4 @@
-.\" $NetBSD: __CONCAT.3,v 1.5 2010/05/13 21:03:33 joerg Exp $ $
+.\" $NetBSD: __CONCAT.3,v 1.6 2010/12/16 10:40:04 jruoho 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 April 17, 2010
+.Dd December 16, 2010
.Dt __CONCAT 3
.Os
.Sh NAME
@@ -80,7 +80,8 @@
(void)printf("%s%s\en", __STRING(Net), __STRING(BSD));
.Ed
.Sh SEE ALSO
-.Xr cpp 1
+.Xr cpp 1 ,
+.Xr cdefs 3
.Sh HISTORY
The
.Fn __CONCAT
Index: src/share/man/man3/__arraycount.3
diff -u src/share/man/man3/__arraycount.3:1.5 src/share/man/man3/__arraycount.3:1.6
--- src/share/man/man3/__arraycount.3:1.5 Thu May 13 19:31:28 2010
+++ src/share/man/man3/__arraycount.3 Thu Dec 16 10:40:04 2010
@@ -1,4 +1,4 @@
-.\" $NetBSD: __arraycount.3,v 1.5 2010/05/13 19:31:28 joerg Exp $
+.\" $NetBSD: __arraycount.3,v 1.6 2010/12/16 10:40:04 jruoho 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 1, 2010
+.Dd December 16, 2010
.Dt __ARRAYCOUNT 3
.Os
.Sh NAME
@@ -53,6 +53,8 @@
for (i = 0; i \*[Lt] __arraycount(buf); i++)
\&...
.Ed
+.Sh SEE ALSO
+.Xr cdefs 3
.Sh HISTORY
The
.Fn __arraycount
Index: src/share/man/man3/__UNCONST.3
diff -u src/share/man/man3/__UNCONST.3:1.4 src/share/man/man3/__UNCONST.3:1.5
--- src/share/man/man3/__UNCONST.3:1.4 Thu May 13 19:29:01 2010
+++ src/share/man/man3/__UNCONST.3 Thu Dec 16 10:40:04 2010
@@ -1,4 +1,4 @@
-.\" $NetBSD: __UNCONST.3,v 1.4 2010/05/13 19:29:01 joerg Exp $
+.\" $NetBSD: __UNCONST.3,v 1.5 2010/12/16 10:40:04 jruoho 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 February 28, 2010
+.Dd December 16, 2010
.Dt __UNCONST 3
.Os
.Sh NAME
@@ -64,7 +64,8 @@
.Em intptr_t ,
a signed type guaranteed to hold a pointer.
.Sh SEE ALSO
-.Xr cc 1
+.Xr cc 1 ,
+.Xr cdefs 3
.Sh CAVEATS
As both macros may hide valid errors, their usage is not recommended
unless there is a well-thought reason for a cast.
Index: src/share/man/man3/bits.3
diff -u src/share/man/man3/bits.3:1.9 src/share/man/man3/bits.3:1.10
--- src/share/man/man3/bits.3:1.9 Fri Aug 27 09:13:38 2010
+++ src/share/man/man3/bits.3 Thu Dec 16 10:40:04 2010
@@ -1,4 +1,4 @@
-.\" $NetBSD: bits.3,v 1.9 2010/08/27 09:13:38 jruoho Exp $
+.\" $NetBSD: bits.3,v 1.10 2010/12/16 10:40:04 jruoho Exp $
.\"
.\" Copyright (c) 2006, 2010 David Young. All rights reserved.
.\"
@@ -25,7 +25,7 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
.\" POSSIBILITY OF SUCH DAMAGE.
.\"
-.Dd August 27, 2010
+.Dd December 16, 2010
.Dt BITS 3
.Os
.Sh NAME
@@ -122,6 +122,8 @@
val = __SHIFTIN(0x03, mask); /* 00001100 */
val = __SHIFTOUT(0xf, mask); /* 00000011 */
.Ed
+.Sh SEE ALSO
+.Xr cdefs 3
.Sh HISTORY
The
.Nm bits