Module Name: src
Committed By: jruoho
Date: Sun Mar 21 12:27:51 UTC 2010
Modified Files:
src/share/man/man3: Makefile
Added Files:
src/share/man/man3: stddef.3
Log Message:
While at it, add also stddef(3).
To generate a diff of this commit:
cvs rdiff -u -r1.42 -r1.43 src/share/man/man3/Makefile
cvs rdiff -u -r0 -r1.1 src/share/man/man3/stddef.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/Makefile
diff -u src/share/man/man3/Makefile:1.42 src/share/man/man3/Makefile:1.43
--- src/share/man/man3/Makefile:1.42 Sun Mar 21 11:12:52 2010
+++ src/share/man/man3/Makefile Sun Mar 21 12:27:51 2010
@@ -1,10 +1,10 @@
-# $NetBSD: Makefile,v 1.42 2010/03/21 11:12:52 jruoho Exp $
+# $NetBSD: Makefile,v 1.43 2010/03/21 12:27:51 jruoho Exp $
# @(#)Makefile 8.2 (Berkeley) 12/13/93
MAN= _DIAGASSERT.3 __UNCONST.3 CMSG_DATA.3 \
__arraycount.3 assert.3 bits.3 bitstring.3 dlfcn.3 end.3 \
fast_divide32.3 gcq.3 intro.3 offsetof.3 queue.3 \
- stdarg.3 stdbool.3 stdint.3 sysexits.3 \
+ stdarg.3 stdbool.3 stddef.3 stdint.3 sysexits.3 \
tgmath.3 timeradd.3 tree.3 varargs.3
USETBL= # used by queue.3
Added files:
Index: src/share/man/man3/stddef.3
diff -u /dev/null src/share/man/man3/stddef.3:1.1
--- /dev/null Sun Mar 21 12:27:51 2010
+++ src/share/man/man3/stddef.3 Sun Mar 21 12:27:51 2010
@@ -0,0 +1,85 @@
+.\" $NetBSD: stddef.3,v 1.1 2010/03/21 12:27:51 jruoho Exp $
+.\"
+.\" Copyright (c) 2010 The NetBSD Foundation, Inc.
+.\" All rights reserved.
+.\"
+.\" This code is derived from software contributed to The NetBSD Foundation
+.\" by Jukka Ruohonen.
+.\"
+.\" Redistribution and use in source and binary forms, with or without
+.\" modification, are permitted provided that the following conditions
+.\" are met:
+.\" 1. Redistributions of source code must retain the above copyright
+.\" notice, this list of conditions and the following disclaimer.
+.\" 2. Redistributions in binary form must reproduce the above copyright
+.\" notice, this list of conditions and the following disclaimer in the
+.\" documentation and/or other materials provided with the distribution.
+.\"
+.\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
+.\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
+.\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+.\" PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
+.\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+.\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+.\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+.\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+.\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+.\" POSSIBILITY OF SUCH DAMAGE.
+.\"
+.Dd March 21, 2010
+.Os
+.Dt STDDEF 3
+.Sh NAME
+.Nm stddef
+.Nd standard type definitions
+.Sh SYNOPSIS
+.In stddef.h
+.Sh DESCRIPTION
+The
+.In stddef.h
+header defines the following types and macros:
+.Bl -enum -offset 4n
+.It
+.Vt ptrdiff_t ,
+a signed integer type of the result of subtracting two pointers;
+.It
+.Vt size_t ,
+an unsigned integer type of the result of the
+.Fn sizeof
+operator;
+.It
+.Vt wchar_t ,
+an integer type whose range of values can represent distinct wide-character
+codes for all members of the largest character set specified among the
+supported locales: the null character has the code value 0 and each member
+of the character set has a code value equal to its value when used
+as the lone character in an integer character constant;
+.It
+.Vt NULL ,
+which expands to an implementation-defined null pointer constant; and
+.It
+.Fn offsetof ,
+a macro that expands to an integer constant as described in
+.Xr offsetof 3 .
+.El
+.Pp
+Some of the described types and macros may appear also in other headers.
+.Sh SEE ALSO
+.Xr offsetof 3 ,
+.Xr stdbool 3 ,
+.Xr stdint 3
+.Sh STANDARDS
+The
+.In stddef.h
+header conforms to
+.St -isoC-99
+and
+.St -p1003.1-2001 .
+.Sh HISTORY
+The
+.In stddef.h
+header was introduced in
+.Nx 0.8 ,
+the first official release of
+.Nx .