--- manpages-3.23.orig/man3/system.3
+++ manpages-3.23/man3/system.3
@@ -77,6 +77,7 @@
 C89, C99, POSIX.1-2001.
 .SH NOTES
 .PP
+.\" Rejected upstream, don't forward.
 If the
 .B _XOPEN_SOURCE
 feature test macro is defined, then the macros described in
@@ -144,6 +145,13 @@
 a sure indication that the
 .BR execve (2)
 call failed.
+
+If the
+.B _XOPEN_SOURCE
+feature test macro is defined, then the macros described in
+.BR wait (2)
+.RB ( WEXITSTATUS (),
+etc.) are made available when including <stdlib.h>.
 .SH "SEE ALSO"
 .BR sh (1),
 .BR signal (2),
--- manpages-3.23.orig/man4/ttys.4
+++ manpages-3.23/man4/ttys.4
@@ -0,0 +1,50 @@
+.\" Copyright (c) 1993 Michael Haardt (michael@moria.de), Fri Apr  2 11:32:09 MET DST 1993
+.\"
+.\" This is free documentation; you can redistribute it and/or
+.\" modify it under the terms of the GNU General Public License as
+.\" published by the Free Software Foundation; either version 2 of
+.\" the License, or (at your option) any later version.
+.\"
+.\" The GNU General Public License's references to "object code"
+.\" and "executables" are to be interpreted as the output of any
+.\" document formatting or typesetting system, including
+.\" intermediate and printed output.
+.\"
+.\" This manual is distributed in the hope that it will be useful,
+.\" but WITHOUT ANY WARRANTY; without even the implied warranty of
+.\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+.\" GNU General Public License for more details.
+.\"
+.\" You should have received a copy of the GNU General Public
+.\" License along with this manual; if not, write to the Free
+.\" Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111,
+.\" USA.
+.\"
+.\" Modified Sat Jul 24 17:03:24 1993 by Rik Faith (faith@cs.unc.edu)
+.TH TTYS 4 1992-12-19 "Linux" "Linux Programmer's Manual"
+.SH NAME
+ttys \- serial terminal lines
+.SH DESCRIPTION
+\fBttyS[0-3]\fP are character devices for the serial terminal lines.
+.LP
+They are typically created by:
+.RS
+.sp
+mknod -m 660 /dev/ttyS0 c 4 64 # base address 0x03f8
+.br
+mknod -m 660 /dev/ttyS1 c 4 65 # base address 0x02f8
+.br
+mknod -m 660 /dev/ttyS2 c 4 66 # base address 0x03e8
+.br
+mknod -m 660 /dev/ttyS3 c 4 67 # base address 0x02e8
+.br
+chown root:tty /dev/ttyS[0-3]
+.sp
+.RE
+.SH FILES
+/dev/ttyS[0-3]
+.SH "SEE ALSO"
+.BR mknod (1),
+.BR chown (1),
+.BR getty (1),
+.BR tty (4)
--- manpages-3.23.orig/man2/FD_ISSET.2
+++ manpages-3.23/man2/FD_ISSET.2
@@ -0,0 +1 @@
+.so man2/select.2
--- manpages-3.23.orig/man2/FD_ZERO.2
+++ manpages-3.23/man2/FD_ZERO.2
@@ -0,0 +1 @@
+.so man2/select.2
--- manpages-3.23.orig/man2/adjtime.2
+++ manpages-3.23/man2/adjtime.2
@@ -0,0 +1,71 @@
+.\" This is free documentation; you can redistribute it and/or
+.\" modify it under the terms of the GNU General Public License as
+.\" published by the Free Software Foundation; either version 2 of
+.\" the License, or (at your option) any later version.
+.\"
+.\" The GNU General Public License's references to "object code"
+.\" and "executables" are to be interpreted as the output of any
+.\" document formatting or typesetting system, including
+.\" intermediate and printed output.
+.\"
+.\" This manual is distributed in the hope that it will be useful,
+.\" but WITHOUT ANY WARRANTY; without even the implied warranty of
+.\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+.\" GNU General Public License for more details.
+.\"
+.\" You should have received a copy of the GNU General Public
+.\" License along with this manual; if not, write to the Free
+.\" Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111,
+.\" USA.
+.\"
+.\" 2002-02-16, joey: Converted from glibc.info
+.\"
+.TH ADJTIME 2 2002-02-16 "Linux 2.0" "Linux Programmer's Manual"
+.SH NAME
+adjtime \- smoothly tune kernel clock
+.SH SYNOPSIS
+.B #include <sys/time.h>
+.sp
+.BI "int adjtime(const struct timeval *" delta ", struct timeval *" olddelta );
+.SH DESCRIPTION
+This function speeds up or slows down the system clock in order to
+make a gradual adjustment.  This ensures that the calendar time
+reported by the system clock is always monotonically increasing, which
+might not happen if you simply set the clock.
+
+The
+.I delta
+argument specifies a relative adjustment to be made to the clock time.
+If negative, the system clock is slowed down fora while until it has
+lost this much elapsed time.  If positive, the system clock is speeded
+up for a while.
+
+If the
+.I olddelta
+argument is not a null pointer, the
+.B adjtime
+function returns information about any previous time adjustment that
+has not yet completed.
+
+This function is typically used to synchronize the clocks of computers
+in a local network.  You must be a privileged user to use it.
+.SH "RETURN VALUE"
+The
+.B adjtime
+function returns 0 on success and -1 on failure and sets the external
+variable
+.I errno
+accordingly.
+.SH ERRORS
+.TP
+.B EPERM
+The calling process does not have enough privileges to access the clock.
+.SH NOTE
+With a Linux kernel, you can use the 
+.BR adjtimex (2)
+function to permanently change the system clock speed.
+.SH "CONFORMING TO"
+This function is derived from 4.3 BSD and SVr4.
+.SH "SEE ALSO"
+.BR adjtimex (2),
+.BR settimeofday (2)
--- manpages-3.23.orig/man2/FD_SET.2
+++ manpages-3.23/man2/FD_SET.2
@@ -0,0 +1 @@
+.so man2/select.2
--- manpages-3.23.orig/man2/FD_CLR.2
+++ manpages-3.23/man2/FD_CLR.2
@@ -0,0 +1 @@
+.so man2/select.2
--- manpages-3.23.orig/man2/socket.2
+++ manpages-3.23/man2/socket.2
@@ -379,6 +379,12 @@
 However, already the BSD man page promises: "The protocol
 family generally is the same as the address family", and subsequent
 standards use AF_* everywhere.
+
+The header file
+.I <sys/types.h>
+is only required for libc4 or earlier.  Some packages, like
+util-linux, claim portability to all Linux versions and libraries.
+They certainly need this header file.
 .SH EXAMPLE
 An example of the use of
 .BR socket ()
--- manpages-3.23.orig/man5/networks.5
+++ manpages-3.23/man5/networks.5
@@ -19,9 +19,8 @@
 .\" License along with this manual; if not, write to the Free
 .\" Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139,
 .\" USA.
-.\" 2008-09-04, mtk, taken from Debian downstream, with a few light edits
 .\"
-.TH NETWORKS 5 2008-09-04 "GNU/Linux" "Linux System Administration"
+.TH NETWORKS 5 2001-12-22 "GNU/Linux" "Linux System Administration"
 .SH NAME
 networks \- network name information
 .SH DESCRIPTION
@@ -37,35 +36,30 @@
 
 where the fields are delimited by spaces or tabs.
 Empty lines are ignored.
-The hash character (\fB#\fP) indicates the start of a comment:
-this character, and the remaining characters up to
-the end of the current line,
-are ignored by library functions that process the file.
+If a line contains a hash mark (#), the hash mark and the remaining
+part of the line are ignored.
 
 The field descriptions are:
 
 .TP
 .I name
 The symbolic name for the network.
-Network names can contain any printable characters execept
-white-space characters or the comment character.
 .TP
 .I number
-The official number for this network in numbers-and-dots notation (see
-.BR inet (3)).
-The trailing ".0" (for the host component of the network address) may be omitted.
+The official number for this network in dotted-decimal notation.
+The trailing ".0" may be omitted.
 .TP
 .I aliases
 Optional aliases for the network.
 .LP
 
-This file is read by the
-.BR route (8)
-and
-.BR netstat (8)
+This file is read by
+.B route
+or
+.B netstat
 utilities.
 Only Class A, B or C networks are supported, partitioned networks
-(i.e., network/26 or network/28) are not supported by this facility.
+(i.e. network/26 or network/28) are not supported by this facility.
 .SH FILES
 .TP
 .I /etc/networks
