OSDN Git Service

(split) LDP: Update original to v3.37.
authorAkihiro MOTOKI <amotoki@gmail.com>
Sun, 22 Apr 2012 21:49:17 +0000 (06:49 +0900)
committerAkihiro MOTOKI <amotoki@gmail.com>
Sun, 22 Apr 2012 21:49:17 +0000 (06:49 +0900)
46 files changed:
original/man-pages.lsm
original/man1/getent.1 [new file with mode: 0644]
original/man2/add_key.2
original/man2/bdflush.2
original/man2/clone.2
original/man2/dup.2
original/man2/fallocate.2
original/man2/fork.2
original/man2/fsync.2
original/man2/mount.2
original/man2/mremap.2
original/man2/nfsservctl.2
original/man2/open.2
original/man2/pipe.2
original/man2/ptrace.2
original/man2/recvmmsg.2
original/man2/request_key.2
original/man2/sched_rr_get_interval.2
original/man2/send.2
original/man2/sendmmsg.2 [new file with mode: 0644]
original/man2/sync.2
original/man2/syscalls.2
original/man2/vfork.2
original/man3/gets.3
original/man3/pthread_sigmask.3
original/man3/readdir.3
original/man3/scanf.3
original/man3/sem_wait.3
original/man3/wcpcpy.3
original/man3/wcrtomb.3
original/man3/wcslen.3
original/man3/wcsnrtombs.3
original/man3/wcsrtombs.3
original/man3/wcstombs.3
original/man5/core.5
original/man5/passwd.5
original/man5/proc.5
original/man5/resolv.conf.5
original/man7/capabilities.7
original/man7/feature_test_macros.7
original/man7/inotify.7
original/man7/man.7
original/man7/mdoc.7
original/man7/mdoc.samples.7
original/man8/ld.so.8
translation_list

index 70d6e84..928bb73 100644 (file)
@@ -1,13 +1,13 @@
 Begin3
 Title:          Section 2, 3, 4, 5 and 7 man pages for Linux
-Version:        3.35
-Entered-date:   2011-10-04
+Version:        3.37
+Entered-date:   2012-03-06
 Description:    Linux manual pages
 Keywords:       man pages
 Author:         several
 Maintained-by:  Michael Kerrisk <mtk.manpages@gmail.com>
 Primary-site:   ftp://ftp.kernel.org/pub/linux/docs/man-pages
-                1689k man-pages-3.35.tar.gz
+                1707k man-pages-3.37.tar.gz
 Alternate-site: ftp://ftp.win.tue.nl/pub/linux-local/manpages
 Copying-policy: several; the pages are all freely distributable as long as
                nroff source is provided
diff --git a/original/man1/getent.1 b/original/man1/getent.1
new file mode 100644 (file)
index 0000000..47e790c
--- /dev/null
@@ -0,0 +1,367 @@
+.\" Copyright (c) 2011, Mark R. Bannister <cambridge@users.sourceforge.net>
+.\"
+.\" 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.
+.\"
+.TH GETENT 1 2011-10-31 "Linux" "User Commands"
+.SH NAME
+getent \- get entries from Name Service Switch libraries
+.SH SYNOPSIS
+.BI "getent " database " [ " key " ... ]"
+.SH DESCRIPTION
+The
+.I getent
+command displays entries from databases supported by the
+Name Service Switch libraries,
+which are configured in
+.IR /etc/nsswitch.conf .
+If one or more
+.I key
+arguments are provided,
+then only the entries that match the supplied keys will be displayed.
+Otherwise, if no
+.I key
+is provided, all entries will be displayed (unless the database does not
+support enumeration).
+.LP
+The
+.I database
+may be any of those supported by the GNU C Library, listed below:
+.RS 3
+.TP 10
+.B ahosts
+When no
+.I key
+is provided, use
+.BR sethostent (3),
+.BR gethostent (3),
+and
+.BR endhostent (3)
+to enumerate the hosts database.
+This is identical to using
+.BR hosts .
+When one or more
+.I key
+arguments are provided, pass each
+.I key
+in succession to
+.BR getaddrinfo (3)
+with the address family
+.BR AF_UNSPEC ,
+enumerating each socket address structure returned.
+.TP
+.B ahostsv4
+Same as
+.BR ahosts ,
+but use the address family
+.BR AF_INET .
+.TP
+.B ahostsv6
+Same as
+.BR ahosts ,
+but use the address family
+.BR AF_INET6 .
+The call to
+.BR getaddrinfo (3)
+in this case includes the
+.B AI_V4MAPPED
+flag.
+.TP
+.B aliases
+When no
+.I key
+is provided, use
+.BR setaliasent (3),
+.BR getaliasent (3),
+and
+.BR endaliasent (3)
+to enumerate the aliases database.
+When one or more
+.I key
+arguments are provided, pass each
+.I key
+in succession to
+.BR getaliasbyname (3)
+and display the result.
+.TP
+.B ethers
+When one or more
+.I key
+arguments are provided, pass each
+.I key
+in succession to
+.BR ether_aton (3)
+and
+.BR ether_hostton (3)
+until a result is obtained, and display the result.
+Enumeration is not supported on
+.BR ethers ,
+so a
+.I key
+must be provided.
+.TP
+.B group
+When no
+.I key
+is provided, use
+.BR setgrent (3),
+.BR getgrent (3),
+and
+.BR endgrent (3)
+to enumerate the group database.
+When one or more
+.I key
+arguments are provided, pass each numeric
+.I key
+to
+.BR getgrgid (3)
+and each nonnumeric
+.I key
+to
+.BR getgrnam (3)
+and display the result.
+.TP
+.B gshadow
+When no
+.I key
+is provided, use
+.BR setsgent (3),
+.BR getsgent (3),
+and
+.BR endsgent (3)
+to enumerate the gshadow database.
+When one or more
+.I key
+arguments are provided, pass each
+.I key
+in succession to
+.BR getsgnam (3)
+and display the result.
+.TP
+.B hosts
+When no
+.I key
+is provided, use
+.BR sethostent (3),
+.BR gethostent (3),
+and
+.BR endhostent (3)
+to enumerate the hosts database.
+When one or more
+.I key
+arguments are provided, pass each
+.I key
+to
+.BR gethostbyaddr (3)
+or
+.BR gethostbyname2 (3),
+depending on whether a call to
+.BR inet_pton (3)
+indicates that the
+.I key
+is an IPv6 or IPv4 address or not, and display the result.
+.TP
+.B initgroups
+When one or more
+.I key
+arguments are provided, pass each
+.I key
+in succession to
+.BR getgrouplist (3)
+and display the result.
+Enumeration is not supported on
+.BR initgroups ,
+so a
+.I key
+must be provided.
+.TP
+.B netgroup
+When one
+.I key
+is provided, pass the
+.I key
+to
+.BR setnetgrent (3)
+and, using
+.BR getnetgrent (3)
+display the resulting string triple
+.RI ( hostname ", " username ", " domainname ).
+Alternatively, three
+.I keys
+may be provided, which are interpreted as the
+.IR hostname ,
+.I username
+and
+.I domainname
+to match to a netgroup name via
+.BR innetgr (3).
+Enumeration is not supported on
+.BR initgroups ,
+so either one or three
+.I keys
+must be provided.
+.TP
+.B networks
+When no
+.I key
+is provided, use
+.BR setnetent (3),
+.BR getnetent (3),
+and
+.BR endnetent (3)
+to enumerate the networks database.
+When one or more
+.I key
+arguments are provided, pass each numeric
+.I key
+to
+.BR getnetbyaddr (3)
+and each nonnumeric
+.I key
+to
+.BR getnetbyname (3)
+and display the result.
+.TP
+.B passwd
+When no
+.I key
+is provided, use
+.BR setpwent (3),
+.BR getpwent (3),
+and
+.BR endpwent (3)
+to enumerate the passwd database.
+When one or more
+.I key
+arguments are provided, pass each numeric
+.I key
+to
+.BR getpwuid (3)
+and each nonnumeric
+.I key
+to
+.BR getpwnam (3)
+and display the result.
+.TP
+.B protocols
+When no
+.I key
+is provided, use
+.BR setprotoent (3),
+.BR getprotoent (3),
+and
+.BR endprotoent (3)
+to enumerate the protocols database.
+When one or more
+.I key
+arguments are provided, pass each numeric
+.I key
+to
+.BR getprotobynumber (3)
+and each nonnumeric
+.I key
+to
+.BR getprotobyname (3)
+and display the result.
+.TP
+.B rpc
+When no
+.I key
+is provided, use
+.BR setrpcent (3),
+.BR getrpcent (3),
+and
+.BR endrpcent (3)
+to enumerate the rpc database.
+When one or more
+.I key
+arguments are provided, pass each numeric
+.I key
+to
+.BR getrpcbynumber (3)
+and each nonnumeric
+.I key
+to
+.BR getrpcbyname (3)
+and display the result.
+.TP
+.B services
+When no
+.I key
+is provided, use
+.BR setservent (3),
+.BR getservent (3),
+and
+.BR endservent (3)
+to enumerate the services database.
+When one or more
+.I key
+arguments are provided, pass each numeric
+.I key
+to
+.BR getservbynumber (3)
+and each nonnumeric
+.I key
+to
+.BR getservbyname (3)
+and display the result.
+.TP
+.B shadow
+When no
+.I key
+is provided, use
+.BR setspent (3),
+.BR getspent (3),
+and
+.BR endspent (3)
+to enumerate the shadow database.
+When one or more
+.I key
+arguments are provided, pass each
+.I key
+in succession to
+.BR getspnam (3)
+and display the result.
+.RE
+.SH "EXIT STATUS"
+One of the following exit values can be returned by
+.BR getent :
+.RS 3
+.TP 10
+.B 0
+Command completed successfully.
+.TP
+.B 1
+Missing arguments, or
+.I database
+unknown.
+.TP
+.B 2
+One or more supplied
+.I key
+could not be found in the
+.IR database .
+.TP
+.B 3
+Enumeration not supported on this
+.IR database .
+.RE
+.SH "SEE ALSO"
+.BR nsswitch.conf (5)
index 028c9a1..f31dee3 100644 (file)
@@ -15,7 +15,8 @@ add_key \- Add a key to the kernel's key management facility
 .B #include <keyutils.h>
 .sp
 .BI "key_serial_t add_key(const char *" type ", const char *" description ,
-.BI "const void *" payload ", size_t " plen ", key_serial_t " keyring ");"
+.BI "                     const void *" payload ", size_t " plen ,
+.BI "                     key_serial_t " keyring ");"
 .SH DESCRIPTION
 .BR add_key ()
 asks the kernel to create or update a key of the given
index d05efe1..cfe6943 100644 (file)
@@ -25,7 +25,7 @@
 .\" Modified 1997-01-31 by Eric S. Raymond <esr@thyrsus.com>
 .\" Modified 2004-06-17 by Michael Kerrisk <mtk.manpages@gmail.com>
 .\"
-.TH BDFLUSH 2 2004-06-17 "Linux" "Linux Programmer's Manual"
+.TH BDFLUSH 2 2012-03-05 "Linux" "Linux Programmer's Manual"
 .SH NAME
 bdflush \- start, flush, or tune buffer-dirty-flush daemon
 .SH SYNOPSIS
@@ -36,6 +36,17 @@ bdflush \- start, flush, or tune buffer-dirty-flush daemon
 .BI "int bdflush(int "  func ", long " data );
 .fi
 .SH DESCRIPTION
+.IR Note :
+Since Linux 2.6,
+.\" As noted in a changes in the 2.5.12 source
+this system call is deprecated and does nothing.
+It is likely to disappear altogether in a future kernel release.
+Nowadays, the task performed by
+.BR bdflush ()
+is handled by the kernel
+.I pdflush
+thread.
+
 .BR bdflush ()
 starts, flushes, or tunes the buffer-dirty-flush daemon.
 Only a privileged process (one with the
index 86fe954..1776f19 100644 (file)
@@ -286,6 +286,7 @@ This flag can't be specified in conjunction with
 .BR CLONE_SYSVSEM .
 .TP
 .BR CLONE_NEWNET " (since Linux 2.6.24)"
+.\" FIXME Check when the implementation was completed
 (The implementation of this flag was only completed
 by about kernel version 2.6.29.)
 
index 0daff07..dba82a6 100644 (file)
@@ -33,7 +33,7 @@
 .\"     details for dup2().
 .\" 2008-10-09, mtk: add description of dup3()
 .\"
-.TH DUP 2 2010-09-10 "Linux" "Linux Programmer's Manual"
+.TH DUP 2 2012-02-14 "Linux" "Linux Programmer's Manual"
 .SH NAME
 dup, dup2, dup3 \- duplicate a file descriptor
 .SH SYNOPSIS
@@ -44,6 +44,7 @@ dup, dup2, dup3 \- duplicate a file descriptor
 .BI "int dup2(int " oldfd ", int " newfd );
 .sp
 .BR "#define _GNU_SOURCE" "             /* See feature_test_macros(7) */"
+.BR "#include <fcntl.h>" "              /* Obtain O_* constant definitions */
 .B #include <unistd.h>
 .sp
 .BI "int dup3(int " oldfd ", int " newfd ", int " flags );
index a0c01a4..9fe0620 100644 (file)
@@ -2,9 +2,10 @@
 .\" Written by Dave Chinner <dgc@sgi.com>
 .\" May be distributed as per GNU General Public License version 2.
 .\"
-.\" FIXME: Linux 2.6.38 added FALLOC_FL_PUNCH_HOLE
+.\" 2011-09-19: Added FALLOC_FL_PUNCH_HOLE
+.\" 2011-09-19: Substantial restructuring of the page
 .\"
-.TH FALLOCATE 2 2011-09-19 "Linux" "Linux Programmer's Manual"
+.TH FALLOCATE 2 2012-02-27 "Linux" "Linux Programmer's Manual"
 .SH NAME
 fallocate \- manipulate file space
 .SH SYNOPSIS
@@ -34,50 +35,77 @@ bytes.
 The
 .I mode
 argument determines the operation to be performed on the given range.
-Currently only one flag is supported for
-.IR mode :
-.TP
-.B FALLOC_FL_KEEP_SIZE
-This flag allocates and initializes to zero the disk space
+Details of the supported operations are given in the subsections below.
+.SS Allocating disk space
+The default operation (i.e.,
+.I mode
+is zero) of
+.BR fallocate ()
+allocates and initializes to zero the disk space
 within the range specified by
 .I offset
 and
 .IR len .
-After a successful call, subsequent writes into this range
-are guaranteed not to fail because of lack of disk space.
-Preallocating zeroed blocks beyond the end of the file
-is useful for optimizing append workloads.
-Preallocating blocks does not change
-the file size (as reported by
+The file size (as reported by
 .BR stat (2))
-even if it is less than
-.IR offset + len .
-.\"
-.\" Note from Amit Arora:
-.\" There were few more flags which were discussed, but none of
-.\" them have been finalized upon. Here are these flags:
-.\" FA_FL_DEALLOC, FA_FL_DEL_DATA, FA_FL_ERR_FREE, FA_FL_NO_MTIME,
-.\" FA_FL_NO_CTIME
-.\" All of the above flags were debated upon and we can not say
-.\" if any/which one of these flags will make it to the later kernels.
-.PP
-If
-.B FALLOC_FL_KEEP_SIZE
-flag is not specified in
-.IR mode ,
-the default behavior is almost same as when this flag is specified.
-The only difference is that on success,
-the file size will be changed if
+will be changed if
 .I "offset + len"
 is greater than the file size.
 This default behavior closely resembles the behavior of the
 .BR posix_fallocate (3)
 library function,
 and is intended as a method of optimally implementing that function.
+
+After a successful call, subsequent writes into the range specified by
+.IR offset
+and
+.IR len
+are guaranteed not to fail because of lack of disk space.
+
+If the
+.B FALLOC_FL_KEEP_SIZE
+flag is specified in
+.IR mode ,
+the behavior of the call is similar,
+but the file size will not be changed even if
+.I "offset + len"
+is greater than the file size.
+Preallocating zeroed blocks beyond the end of the file in this manner
+is useful for optimizing append workloads.
 .PP
 Because allocation is done in block size chunks,
 .BR fallocate ()
-may allocate a larger range than that which was specified.
+may allocate a larger range of disk space than was specified.
+.SS Deallocating file space
+Specifying the
+.BR FALLOC_FL_PUNCH_HOLE
+flag (available since Linux 2.6.38) in
+.I mode
+deallocates space (i.e., creates a hole)
+in the byte range starting at
+.I offset
+and continuing for
+.I len
+bytes.
+Within the specified range, partial file system blocks are zeroed,
+and whole file system blocks are removed from the file.
+After a successful call,
+subsequent reads from this range will return zeroes.
+
+The
+.BR FALLOC_FL_PUNCH_HOLE
+flag must be ORed with
+.BR FALLOC_FL_KEEP_SIZE
+in
+.IR mode ;
+in other words, even when punching off the end of the file, the file size
+(as reported by
+.BR stat (2))
+does not change.
+
+Not all file systems support
+.BR FALLOC_FL_PUNCH_HOLE ;
+if a file system doesn't support the operation, an error is returned.
 .SH RETURN VALUE
 .BR fallocate ()
 returns zero on success, and \-1 on failure.
@@ -98,6 +126,12 @@ A signal was caught during execution.
 .I offset
 was less than 0, or
 .I len
+.\" FIXME (raise a kernel bug) Probably the len==0 case should be
+.\" a no-op, rather than an error. That would be consistent with
+.\" similar APIs for the len==0 case.
+.\" See "Re: [PATCH] fallocate.2: add FALLOC_FL_PUNCH_HOLE flag definition"
+.\" 21 Sep 2012
+.\" http://thread.gmane.org/gmane.linux.file-systems/48331/focus=1193526
 was less than or equal to 0.
 .TP
 .B EIO
@@ -131,6 +165,16 @@ The file referred to by
 .I fd
 is marked immutable (see
 .BR chattr (1)).
+Or:
+.I mode
+specifies
+.BR FALLOC_FL_PUNCH_HOLE
+and
+the file referred to by
+.I fd
+is marked append-only
+(see
+.BR chattr (1)).
 .TP
 .B ESPIPE
 .I fd
index 49aeab6..4089fb9 100644 (file)
@@ -36,7 +36,7 @@
 .\"     Greatly expanded, to describe all attributes that differ
 .\"    parent and child.
 .\"
-.TH FORK 2 2009-04-27 "Linux" "Linux Programmer's Manual"
+.TH FORK 2 2012-02-27 "Linux" "Linux Programmer's Manual"
 .SH NAME
 fork \- create a child process
 .SH SYNOPSIS
@@ -205,6 +205,14 @@ wrapper that is provided as part of the
 NPTL threading implementation invokes
 .BR clone (2)
 with flags that provide the same effect as the traditional system call.
+(A call to
+.BR fork ()
+is equivalent to a call to
+.BR clone (2)
+specifying
+.I flags
+as just
+.BR SIGCHLD .)
 The glibc wrapper invokes any fork handlers that have been
 established using
 .BR pthread_atfork (3).
index 58d325a..8416eae 100644 (file)
@@ -33,8 +33,9 @@
 .\" Modified 18 Apr 2001 by Andi Kleen
 .\"   Fix description to describe what it really does; add a few caveats.
 .\" 2006-04-28, mtk, substantial rewrite of various parts.
+.\" 2012-02-27 Various changes by Christoph Hellwig <hch@lst.de>
 .\"
-.TH FSYNC 2 2008-11-07 "Linux" "Linux Programmer's Manual"
+.TH FSYNC 2 2012-02-27 "Linux" "Linux Programmer's Manual"
 .SH NAME
 fsync, fdatasync \- synchronize a file's in-core state with storage device
 .SH SYNOPSIS
@@ -63,12 +64,15 @@ transfers ("flushes") all modified in-core data of
 (i.e., modified buffer cache pages for) the
 file referred to by the file descriptor
 .I fd
-to the disk device (or other permanent storage device)
-where that file resides.
+to the disk device (or other permanent storage device) so that all
+changed information can be retrieved even after the system crashed or
+was rebooted.
+This includes writing through or flushing a disk cache if present.
 The call blocks until the device reports that the transfer has completed.
 It also flushes metadata information associated with the file (see
 .BR stat (2)).
 
+
 Calling
 .BR fsync ()
 does not necessarily ensure
@@ -111,7 +115,7 @@ is set appropriately.
 .TP
 .B EBADF
 .I fd
-is not a valid file descriptor open for writing.
+is not a valid open file descriptor.
 .TP
 .B EIO
 An error occurred during synchronization.
@@ -135,49 +139,27 @@ to a value greater than 0.
 .\" -1: unavailable, 0: ask using sysconf().
 .\" glibc defines them to 1.
 .SH NOTES
-Applications that access databases or log files often write a tiny
-data fragment (e.g., one line in a log file) and then call
-.BR fsync ()
-immediately in order to ensure that the written data is physically
-stored on the harddisk.
-Unfortunately,
-.BR fsync ()
-will always initiate two write operations: one for the newly written
-data and another one in order to update the modification time stored
-in the inode.
-If the modification time is not a part of the transaction
-concept
-.BR fdatasync ()
-can be used to avoid unnecessary inode disk write operations.
-
-If the underlying hard disk has write caching enabled, then
-the data may not really be on permanent storage when
-.BR fsync ()
-/
-.BR fdatasync ()
-return.
-.\" See
-.\" .BR hdparm (8)
-.\" for how to disable that cache for IDE disks.
-.LP
-When an ext2 file system is mounted with the
-.I sync
-option, directory entries are also implicitly synced by
-.BR fsync ().
-.LP
-On kernels before 2.4,
-.BR fsync ()
-on big files can be inefficient.
-An alternative might be to use the
-.B O_SYNC
-flag to
-.BR open (2).
+On some UNIX systems (but not Linux),
+.I fd
+must be a
+.I writable
+file descriptor.
 
 In Linux 2.2 and earlier,
 .BR fdatasync ()
 is equivalent to
 .BR fsync (),
 and so has no performance advantage.
+
+The
+.BR fsync ()
+implementations in older kernels and lesser used filesystems
+does not know how to flush disk caches.
+In these cases disk caches need to be disabled using
+.BR hdparm (8)
+or
+.BR sdparm (8)
+to guarantee safe operation.
 .SH "SEE ALSO"
 .BR bdflush (2),
 .BR open (2),
index 5eee0a0..3de6191 100644 (file)
@@ -37,7 +37,7 @@
 .\" 2008-10-06, mtk: move umount*() material into separate umount.2 page.
 .\" 2008-10-06, mtk: Add discussion of namespaces.
 .\"
-.TH MOUNT 2 2010-09-10 "Linux" "Linux Programmer's Manual"
+.TH MOUNT 2 2012-01-18 "Linux" "Linux Programmer's Manual"
 .SH NAME
 mount \- mount file system
 .SH SYNOPSIS
@@ -119,9 +119,6 @@ was also ignored
 .\" with the exception of the "hidden" MS_REC mountflags bit
 (the bind mount has the same mount options as
 the underlying mount point).
-Since Linux 2.6.26, the
-.B MS_RDONLY
-flag is honored when making a bind mount.
 .TP
 .BR MS_DIRSYNC " (since Linux 2.5.19)"
 Make directory changes on this file system synchronous.
index f0cb08f..e38ce80 100644 (file)
@@ -208,6 +208,6 @@ argument.
 .BR realloc (3)
 .P
 Your favorite OS text book for more information on paged memory.
-(\fIModern Operating Systems\fP by Andrew S. Tannenbaum,
+(\fIModern Operating Systems\fP by Andrew S. Tanenbaum,
 \fIInside Linux\fP by Randolf Bentson,
 \fIThe Design of the UNIX Operating System\fP by Maurice J. Bach.)
index 0a00879..634505a 100644 (file)
@@ -5,7 +5,7 @@
 .\" FIXME The description of nfsservctl() on this page
 .\" is woefully thin.
 .\"
-.TH NFSSERVCTL 2 1997-07-16 "Linux" "Linux Programmer's Manual"
+.TH NFSSERVCTL 2 2012-03-05 "Linux" "Linux Programmer's Manual"
 .SH NAME
 nfsservctl \- syscall interface to kernel nfs daemon
 .SH SYNOPSIS
@@ -16,6 +16,9 @@ nfsservctl \- syscall interface to kernel nfs daemon
 .BI "                union nfsctl_res *" resp );
 .fi
 .SH DESCRIPTION
+.IR Note :
+Since Linux 3.1, this system call no longer exists.
+
 .nf
 /*
  * These are the commands understood by nfsctl().
index 69324dd..12d22da 100644 (file)
@@ -49,7 +49,7 @@
 .\" FIXME Linux 2.6.33 has O_DSYNC, and a hidden __O_SYNC.
 .\" FIXME: Linux 2.6.39 added O_PATH
 .\"
-.TH OPEN 2 2011-09-08 "Linux" "Linux Programmer's Manual"
+.TH OPEN 2 2012-02-27 "Linux" "Linux Programmer's Manual"
 .SH NAME
 open, creat \- open and possibly create a file or device
 .SH SYNOPSIS
@@ -281,11 +281,11 @@ special situations, such as when applications do their own caching.
 File I/O is done directly to/from user space buffers.
 The
 .B O_DIRECT
-flag on its own makes at an effort to transfer data synchronously,
+flag on its own makes an effort to transfer data synchronously,
 but does not give the guarantees of the
 .B O_SYNC
-that data and necessary metadata are transferred.
-To guarantee synchronous I/O the
+flag that data and necessary metadata are transferred.
+To guarantee synchronous I/O,
 .B O_SYNC
 must be used in addition to
 .BR O_DIRECT .
index b25d94e..e3b1fba 100644 (file)
@@ -33,7 +33,7 @@
 .\"     to EXAMPLE text.
 .\" 2008-10-10, mtk: add description of pipe2()
 .\"
-.TH PIPE 2 2010-09-10 "Linux" "Linux Programmer's Manual"
+.TH PIPE 2 2012-02-14 "Linux" "Linux Programmer's Manual"
 .SH NAME
 pipe, pipe2 \- create pipe
 .SH SYNOPSIS
@@ -43,6 +43,7 @@ pipe, pipe2 \- create pipe
 .BI "int pipe(int " pipefd "[2]);"
 .sp
 .BR "#define _GNU_SOURCE" "             /* See feature_test_macros(7) */"
+.BR "#include <fcntl.h>" "              /* Obtain O_* constant definitions */
 .B #include <unistd.h>
 .sp
 .BI "int pipe2(int " pipefd "[2], int " flags );
index ea41a26..37c4dff 100644 (file)
@@ -1,14 +1,15 @@
 .\" Hey Emacs! This file is -*- nroff -*- source.
 .\"
-.\" Copyright (c) 1993 Michael Haardt
-.\" (michael@moria.de),
+.\" Copyright (c) 1993 Michael Haardt <michael@moria.de>
 .\" Fri Apr  2 11:32:09 MET DST 1993
 .\"
-.\" changes Copyright 1999 Mike Coleman (mkc@acm.org)
+.\" and changes Copyright (C) 1999 Mike Coleman (mkc@acm.org)
 .\" -- major revision to fully document ptrace semantics per recent Linux
 .\"    kernel (2.2.10) and glibc (2.1.2)
 .\" Sun Nov  7 03:18:35 CST 1999
 .\"
+.\" and Copyright (c) 2011, Denys Vlasenko <vda.linux@googlemail.com>
+.\"
 .\" 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
 .\"    Added    PTRACE_SETOPTIONS, PTRACE_GETEVENTMSG, PTRACE_GETSIGINFO,
 .\"        PTRACE_SETSIGINFO, PTRACE_SYSEMU, PTRACE_SYSEMU_SINGLESTEP
 .\"    (Thanks to Blaisorblade, Daniel Jacobowitz and others who helped.)
+.\" 2011-09, major update by Denys Vlasenko <vda.linux@googlemail.com>
 .\"
-.\" FIXME: Linux 3.1 adds PTRACE_SEIZE, PTRACE_INTERRUPT, and PTRACE_LISTEN.
+.\" FIXME (later): Linux 3.1 adds PTRACE_SEIZE, PTRACE_INTERRUPT,
+.\"                and PTRACE_LISTEN.
 .\"
-.TH PTRACE 2 2009-03-30 "Linux" "Linux Programmer's Manual"
+.TH PTRACE 2 2012-03-06 "Linux" "Linux Programmer's Manual"
 .SH NAME
 ptrace \- process trace
 .SH SYNOPSIS
@@ -55,196 +58,291 @@ ptrace \- process trace
 .SH DESCRIPTION
 The
 .BR ptrace ()
-system call provides a means by which a parent process may observe
-and control the execution of another process,
-and examine and change its core image and registers.
+system call provides a means by which one process (the "tracer")
+may observe and control the execution of another process (the "tracee"),
+and examine and change the tracee's memory and registers.
 It is primarily used to implement breakpoint debugging and system
 call tracing.
 .LP
-The parent can initiate a trace by calling
+A tracee first needs to be attached to the tracer.
+Attachment and subsequent commands are per thread:
+in a multithreaded process,
+every thread can be individually attached to a
+(potentially different) tracer,
+or left not attached and thus not debugged.
+Therefore, "tracee" always means "(one) thread",
+never "a (possibly multithreaded) process".
+Ptrace commands are always sent to
+a specific tracee using a call of the form
+
+    ptrace(PTRACE_foo, pid, ...)
+
+where
+.I pid
+is the thread ID of the corresponding Linux thread.
+.LP
+(Note that in this page, a "multithreaded process"
+means a thread group consisting of threads created using the
+.BR clone (2)
+.B CLONE_THREAD
+flag.)
+.LP
+A process can initiate a trace by calling
 .BR fork (2)
 and having the resulting child do a
 .BR PTRACE_TRACEME ,
 followed (typically) by an
-.BR exec (3).
-Alternatively, the parent may commence trace of an existing process using
+.BR execve (2).
+Alternatively, one process may commence tracing another process using
 .BR PTRACE_ATTACH .
 .LP
-While being traced, the child will stop each time a signal is delivered,
+While being traced, the tracee will stop each time a signal is delivered,
 even if the signal is being ignored.
-(The exception is
+(An exception is
 .BR SIGKILL ,
 which has its usual effect.)
-The parent will be notified at its next
-.BR wait (2)
-and may inspect and modify the child process while it is stopped.
-The parent then causes the child to continue,
+The tracer will be notified at its next call to
+.BR waitpid (2)
+(or one of the related "wait" system calls); that call will return a
+.I status
+value containing information that indicates
+the cause of the stop in the tracee.
+While the tracee is stopped,
+the tracer can use various ptrace requests to inspect and modify the tracee.
+The tracer then causes the tracee to continue,
 optionally ignoring the delivered signal
 (or even delivering a different signal instead).
 .LP
-When the parent is finished tracing, it can terminate the child with
-.B PTRACE_KILL
-or cause it to continue executing in a normal, untraced mode
-via
+When the tracer is finished tracing, it can cause the tracee to continue
+executing in a normal, untraced mode via
 .BR PTRACE_DETACH .
 .LP
-The value of \fIrequest\fP determines the action to be performed:
+The value of
+.I request
+determines the action to be performed:
 .TP
 .B PTRACE_TRACEME
-Indicates that this process is to be traced by its parent.
-Any signal
-(except
+Indicate that this process is to be traced by its parent.
+Any signal (except
 .BR SIGKILL )
 delivered to this process will cause it to stop and its
 parent to be notified via
-.BR wait (2).
-Also, all subsequent calls to
+.BR waitpid (2).
+In addition, all subsequent calls to
 .BR execve (2)
-by this process will cause a
+by the traced process will cause a
 .B SIGTRAP
 to be sent to it,
 giving the parent a chance to gain control before the new program
 begins execution.
 A process probably shouldn't make this request if its parent
 isn't expecting to trace it.
-(\fIpid\fP, \fIaddr\fP, and \fIdata\fP are ignored.)
+.RI ( pid ,
+.IR addr ,
+and
+.IR data
+are ignored.)
 .LP
-The above request is used only by the child process;
-the rest are used only by the parent.
-In the following requests, \fIpid\fP specifies the child process
-to be acted on.
+The
+.B PTRACE_TRACEME
+request is used only by the tracee;
+the remaining requests are used only by the tracer.
+In the following requests,
+.I pid
+specifies the thread ID of the tracee to be acted on.
 For requests other than
 .BR PTRACE_KILL ,
-the child process must
-be stopped.
+the tracee must be stopped.
 .TP
 .BR PTRACE_PEEKTEXT ", " PTRACE_PEEKDATA
-Reads a word at the location
+Read a word at the address
 .I addr
-in the child's memory, returning the word as the result of the
+in the tracee's memory, returning the word as the result of the
 .BR ptrace ()
 call.
-Linux does not have separate text and data address spaces, so the two
-requests are currently equivalent.
-(The argument \fIdata\fP is ignored.)
+Linux does not have separate text and data address spaces,
+so these two requests are currently equivalent.
+.RI ( data
+is ignored.)
 .TP
 .B PTRACE_PEEKUSER
 .\" PTRACE_PEEKUSR in kernel source, but glibc uses PTRACE_PEEKUSER,
 .\" and that is the name that seems common on other systems.
-Reads a word at offset
+Read a word at offset
 .I addr
-in the child's USER area,
+in the tracee's USER area,
 which holds the registers and other information about the process
-(see \fI<sys/user.h>\fP).
+(see
+.IR <sys/user.h> ).
 The word is returned as the result of the
 .BR ptrace ()
 call.
-Typically the offset must be word-aligned, though this might vary by
+Typically, the offset must be word-aligned, though this might vary by
 architecture.
 See NOTES.
-(\fIdata\fP is ignored.)
+.RI ( data
+is ignored.)
 .TP
 .BR PTRACE_POKETEXT ", " PTRACE_POKEDATA
-Copies the word
+Copy the word
 .I data
-to location
+to the address
 .I addr
-in the child's memory.
-As above, the two requests are currently equivalent.
+in the tracee's memory.
+As for
+.BR PTRACE_PEEKTEXT
+and
+.BR PTRACE_PEEKDATA ,
+these two requests are currently equivalent.
 .TP
 .B PTRACE_POKEUSER
 .\" PTRACE_POKEUSR in kernel source, but glibc uses PTRACE_POKEUSER,
 .\" and that is the name that seems common on other systems.
-Copies the word
+Copy the word
 .I data
 to offset
 .I addr
-in the child's USER area.
-As above, the offset must typically be word-aligned.
+in the tracee's USER area.
+As for
+.BR PTRACE_PEEKUSER ,
+the offset must typically be word-aligned.
 In order to maintain the integrity of the kernel,
 some modifications to the USER area are disallowed.
+.\" FIXME In the preceding sentence, which modifications are disallowed,
+.\" and when they are disallowed, how does userspace discover that fact?
 .TP
 .BR PTRACE_GETREGS ", " PTRACE_GETFPREGS
-Copies the child's general purpose or floating-point registers,
-respectively, to location \fIdata\fP in the parent.
-See \fI<sys/user.h>\fP for information on
-the format of this data.
-(\fIaddr\fP is ignored.)
+Copy the tracee's general-purpose or floating-point registers,
+respectively, to the address
+.I data
+in the tracer.
+See
+.I <sys/user.h>
+for information on the format of this data.
+.RI ( addr
+is ignored.)
 .TP
 .BR PTRACE_GETSIGINFO " (since Linux 2.3.99-pre6)"
 Retrieve information about the signal that caused the stop.
-Copies a \fIsiginfo_t\fP structure (see
+Copy a
+.I siginfo_t
+structure (see
 .BR sigaction (2))
-from the child to location \fIdata\fP in the parent.
-(\fIaddr\fP is ignored.)
+from the tracee to the address
+.I data
+in the tracer.
+.RI ( addr
+is ignored.)
 .TP
 .BR PTRACE_SETREGS ", " PTRACE_SETFPREGS
-Copies the child's general purpose or floating-point registers,
-respectively, from location \fIdata\fP in the parent.
+Copy the tracee's general-purpose or floating-point registers,
+respectively, from the address
+.I data
+in the tracer.
 As for
 .BR PTRACE_POKEUSER ,
-some general
-purpose register modifications may be disallowed.
-(\fIaddr\fP is ignored.)
+some general-purpose register modifications may be disallowed.
+.\" FIXME In the preceding sentence, which modifications are disallowed,
+.\" and when they are disallowed, how does userspace discover that fact?
+.RI ( addr
+is ignored.)
 .TP
 .BR PTRACE_SETSIGINFO " (since Linux 2.3.99-pre6)"
-Set signal information.
-Copies a \fIsiginfo_t\fP structure from location \fIdata\fP in the
-parent to the child.
-This will only affect signals that would normally be delivered to
-the child and were caught by the tracer.
+Set signal information:
+copy a
+.I siginfo_t
+structure from the address
+.I data
+in the tracer to the tracee.
+This will affect only signals that would normally be delivered to
+the tracee and were caught by the tracer.
 It may be difficult to tell
 these normal signals from synthetic signals generated by
 .BR ptrace ()
 itself.
-(\fIaddr\fP is ignored.)
+.RI ( addr
+is ignored.)
 .TP
 .BR PTRACE_SETOPTIONS " (since Linux 2.4.6; see BUGS for caveats)"
-Sets ptrace options from \fIdata\fP in the parent.
-(\fIaddr\fP is ignored.)
-\fIdata\fP is interpreted
-as a bit mask of options, which are specified by the following flags:
+Set ptrace options from
+.IR data .
+.RI ( addr
+is ignored.)
+.IR data
+is interpreted as a bit mask of options,
+which are specified by the following flags:
 .RS
 .TP
 .BR PTRACE_O_TRACESYSGOOD " (since Linux 2.4.6)"
-When delivering syscall traps, set bit 7 in the signal number
-(i.e., deliver \fISIGTRAP | 0x80\fP).
-This makes it easy for the tracer to tell the difference
-between normal traps and those caused by a syscall.
+When delivering system call traps, set bit 7 in the signal number
+(i.e., deliver
+.IR "SIGTRAP|0x80" ).
+This makes it easy for the tracer to distinguish
+normal traps from those caused by a system call.
 .RB ( PTRACE_O_TRACESYSGOOD
 may not work on all architectures.)
 .TP
 .BR PTRACE_O_TRACEFORK " (since Linux 2.5.46)"
-Stop the child at the next
+Stop the tracee at the next
 .BR fork (2)
-call with \fISIGTRAP | PTRACE_EVENT_FORK\ <<\ 8\fP and automatically
-start tracing the newly forked process,
+and automatically start tracing the newly forked process,
 which will start with a
 .BR SIGSTOP .
-The PID for the new process can be retrieved with
+A
+.BR waitpid (2)
+by the tracer will return a
+.I status
+value such that
+
+.nf
+  status>>8 == (SIGTRAP | (PTRACE_EVENT_FORK<<8))
+.fi
+
+The PID of the new process can be retrieved with
 .BR PTRACE_GETEVENTMSG .
 .TP
 .BR PTRACE_O_TRACEVFORK " (since Linux 2.5.46)"
-Stop the child at the next
+Stop the tracee at the next
 .BR vfork (2)
-call with \fISIGTRAP | PTRACE_EVENT_VFORK\ <<\ 8\fP and automatically start
-tracing the newly vforked process, which will start with a
+and automatically start tracing the newly vforked process,
+which will start with a
 .BR SIGSTOP .
-The PID for the new process can be retrieved with
+A
+.BR waitpid (2)
+by the tracer will return a
+.I status
+value such that
+
+.nf
+  status>>8 == (SIGTRAP | (PTRACE_EVENT_VFORK<<8))
+.fi
+
+The PID of the new process can be retrieved with
 .BR PTRACE_GETEVENTMSG .
 .TP
 .BR PTRACE_O_TRACECLONE " (since Linux 2.5.46)"
-Stop the child at the next
+Stop the tracee at the next
 .BR clone (2)
-call with \fISIGTRAP | PTRACE_EVENT_CLONE\ <<\ 8\fP and automatically start
-tracing the newly cloned process, which will start with a
+and automatically start tracing the newly cloned process,
+which will start with a
 .BR SIGSTOP .
-The PID for the new process can be retrieved with
+A
+.BR waitpid (2)
+by the tracer will return a
+.I status
+value such that
+
+.nf
+  status>>8 == (SIGTRAP | (PTRACE_EVENT_CLONE<<8))
+.fi
+
+The PID of the new process can be retrieved with
 .BR PTRACE_GETEVENTMSG .
+.IP
 This option may not catch
 .BR clone (2)
 calls in all cases.
-If the child calls
+If the tracee calls
 .BR clone (2)
 with the
 .B CLONE_VFORK
@@ -253,76 +351,109 @@ flag,
 will be delivered instead
 if
 .B PTRACE_O_TRACEVFORK
-is set; otherwise if the child calls
+is set; otherwise if the tracee calls
 .BR clone (2)
 with the exit signal set to
 .BR SIGCHLD ,
 .B PTRACE_EVENT_FORK
-will be delivered
-if
+will be delivered if
 .B PTRACE_O_TRACEFORK
 is set.
 .TP
 .BR PTRACE_O_TRACEEXEC " (since Linux 2.5.46)"
-Stop the child at the next
-.BR execve (2)
-call with \fISIGTRAP | PTRACE_EVENT_EXEC\ <<\ 8\fP.
+Stop the tracee at the next
+.BR execve (2).
+A
+.BR waitpid (2)
+by the tracer will return a
+.I status
+value such that
+
+.nf
+  status>>8 == (SIGTRAP | (PTRACE_EVENT_EXEC<<8))
+.fi
+
 .TP
 .BR PTRACE_O_TRACEVFORKDONE " (since Linux 2.5.60)"
-Stop the child at the completion of the next
-.BR vfork (2)
-call with \fISIGTRAP | PTRACE_EVENT_VFORK_DONE\ <<\ 8\fP.
+Stop the tracee at the completion of the next
+.BR vfork (2).
+A
+.BR waitpid (2)
+by the tracer will return a
+.I status
+value such that
+
+.nf
+  status>>8 == (SIGTRAP | (PTRACE_EVENT_VFORK_DONE<<8))
+.fi
+
+The PID of the new process can (since Linux 2.6.18) be retrieved with
+.BR PTRACE_GETEVENTMSG .
 .TP
 .BR PTRACE_O_TRACEEXIT " (since Linux 2.5.60)"
-Stop the child at exit with \fISIGTRAP | PTRACE_EVENT_EXIT\ <<\ 8\fP.
-The child's exit status can be retrieved with
+Stop the tracee at exit.
+A
+.BR waitpid (2)
+by the tracer will return a
+.I status
+value such that
+
+.nf
+  status>>8 == (SIGTRAP | (PTRACE_EVENT_EXIT<<8))
+.fi
+
+The tracee's exit status can be retrieved with
 .BR PTRACE_GETEVENTMSG .
-This stop will be done early during process exit when registers
-are still available, allowing the tracer to see where the exit occurred,
+.IP
+The tracee is stopped early during process exit,
+when registers are still available,
+allowing the tracer to see where the exit occurred,
 whereas the normal exit notification is done after the process
 is finished exiting.
-Even though context is available, the tracer cannot prevent the exit from
-happening at this point.
+Even though context is available,
+the tracer cannot prevent the exit from happening at this point.
 .RE
 .TP
 .BR PTRACE_GETEVENTMSG " (since Linux 2.5.46)"
 Retrieve a message (as an
 .IR "unsigned long" )
 about the ptrace event
-that just happened, placing it in the location \fIdata\fP in the parent.
+that just happened, placing it at the address
+.I data
+in the tracer.
 For
-.B PTRACE_EVENT_EXIT
-this is the child's exit status.
+.BR PTRACE_EVENT_EXIT ,
+this is the tracee's exit status.
 For
 .BR PTRACE_EVENT_FORK ,
-.B PTRACE_EVENT_VFORK
+.BR PTRACE_EVENT_VFORK ,
+.BR PTRACE_EVENT_VFORK_DONE ,
 and
-.B PTRACE_EVENT_CLONE
-this
-is the PID of the new process.
-Since Linux 2.6.18, the PID of the new process is also available
-for
-.BR PTRACE_EVENT_VFORK_DONE .
-(\fIaddr\fP is ignored.)
+.BR PTRACE_EVENT_CLONE ,
+this is the PID of the new process.
+.RI (  addr
+is ignored.)
 .TP
 .B PTRACE_CONT
-Restarts the stopped child process.
-If \fIdata\fP is nonzero and not
-.BR SIGSTOP ,
-it is interpreted as a signal to be delivered to the child;
+Restart the stopped tracee process.
+If
+.I data
+is nonzero,
+it is interpreted as the number of a signal to be delivered to the tracee;
 otherwise, no signal is delivered.
-Thus, for example, the parent can control
-whether a signal sent to the child is delivered or not.
-(\fIaddr\fP is ignored.)
+Thus, for example, the tracer can control
+whether a signal sent to the tracee is delivered or not.
+.RI ( addr
+is ignored.)
 .TP
 .BR PTRACE_SYSCALL ", " PTRACE_SINGLESTEP
-Restarts the stopped child as for
+Restart the stopped tracee as for
 .BR PTRACE_CONT ,
-but arranges for
-the child to be stopped at the next entry to or exit from a system call,
+but arrange for the tracee to be stopped at
+the next entry to or exit from a system call,
 or after execution of a single instruction, respectively.
-(The child will also, as usual, be stopped upon receipt of a signal.)
-From the parent's perspective, the child will appear to have been
+(The tracee will also, as usual, be stopped upon receipt of a signal.)
+From the tracer's perspective, the tracee will appear to have been
 stopped by receipt of a
 .BR SIGTRAP .
 So, for
@@ -331,71 +462,1107 @@ for example, the idea is to inspect
 the arguments to the system call at the first stop,
 then do another
 .B PTRACE_SYSCALL
-and inspect the return value of
-the system call at the second stop.
+and inspect the return value of the system call at the second stop.
 The
 .I data
 argument is treated as for
 .BR PTRACE_CONT .
-(\fIaddr\fP is ignored.)
+.RI (addr
+is ignored.)
 .TP
 .BR PTRACE_SYSEMU ", " PTRACE_SYSEMU_SINGLESTEP " (since Linux 2.6.14)"
 For
 .BR PTRACE_SYSEMU ,
-continue and stop on entry to the next syscall,
+continue and stop on entry to the next system call,
 which will not be executed.
 For
 .BR PTRACE_SYSEMU_SINGLESTEP ,
-do the same
-but also singlestep if not a syscall.
+do the same but also singlestep if not a system call.
 This call is used by programs like
-User Mode Linux that want to emulate all the child's system calls.
+User Mode Linux that want to emulate all the tracee's system calls.
 The
 .I data
 argument is treated as for
 .BR PTRACE_CONT .
-(\fIaddr\fP is ignored;
+.RI ( addr
+is ignored;
 not supported on all architectures.)
 .TP
 .B PTRACE_KILL
-Sends the child a
+Send the tracee a
 .B SIGKILL
 to terminate it.
-(\fIaddr\fP and \fIdata\fP are ignored.)
+.RI ( addr
+and
+.I data
+are ignored.)
+.IP
+.I This operation is deprecated; do not use it!
+Instead, send a
+.BR SIGKILL
+directly using
+.BR kill (2)
+or
+.BR tgkill (2).
+The problem with
+.B PTRACE_KILL
+is that it requires the tracee to be in signal-delivery-stop,
+otherwise it may not work
+(i.e., may complete successfully but won't kill the tracee).
+By contrast, sending a
+.B SIGKILL
+directly has no such limitation.
+.\" [Note from Denys Vlasenko:
+.\"     deprecation suggested by Oleg Nesterov. He prefers to deprecate it
+.\"     instead of describing (and needing to support) PTRACE_KILL's quirks.]
 .TP
 .B PTRACE_ATTACH
-Attaches to the process specified in
+Attach to the process specified in
 .IR pid ,
-making it a traced "child" of the calling process;
-the behavior of the child is as if it had done a
-.BR PTRACE_TRACEME .
-The calling process actually becomes the parent of the child
-process for most purposes (e.g., it will receive
-notification of child events and appears in
-.BR ps (1)
-output as the child's parent), but a
-.BR getppid (2)
-by the child will still return the PID of the original parent.
-The child is sent a
+making it a tracee of the calling process.
+.\" No longer true (removed by Denys Vlasenko, 2011, who remarks:
+.\"        "I think it isn't true in non-ancient 2.4 and in 2.6/3.x.
+.\"         Basically, it's not true for any Linux in practical use.
+.\" ; the behavior of the tracee is as if it had done a
+.\" .BR PTRACE_TRACEME .
+.\" The calling process actually becomes the parent of the tracee
+.\" process for most purposes (e.g., it will receive
+.\" notification of tracee events and appears in
+.\" .BR ps (1)
+.\" output as the tracee's parent), but a
+.\" .BR getppid (2)
+.\" by the tracee will still return the PID of the original parent.
+The tracee is sent a
 .BR SIGSTOP ,
 but will not necessarily have stopped
 by the completion of this call; use
-.BR wait (2)
-to wait for the child to stop.
-(\fIaddr\fP and \fIdata\fP are ignored.)
+.BR waitpid (2)
+to wait for the tracee to stop.
+See the "Attaching and detaching" subsection for additional information.
+.RI ( addr
+and
+.I data
+are ignored.)
 .TP
 .B PTRACE_DETACH
-Restarts the stopped child as for
+Restart the stopped tracee as for
 .BR PTRACE_CONT ,
-but first detaches
-from the process, undoing the reparenting effect of
+but first detach from it.
+Under Linux, a tracee can be detached in this way regardless
+of which method was used to initiate tracing.
+.RI ( addr
+is ignored.)
+.\"
+.\" In the text below, we decided to avoid prettifying the text with markup:
+.\" it would make the source nearly impossible to edit, and we _do_ intend
+.\" to edit it often, in order to keep it updated:
+.\" ptrace API is full of quirks, no need to compound this situation by
+.\" making it excruciatingly painful to document them!
+.\"
+.SS Death under ptrace
+When a (possibly multithreaded) process receives a killing signal
+(one whose disposition is set to
+.B SIG_DFL
+and whose default action is to kill the process),
+all threads exit.
+Tracees report their death to their tracer(s).
+Notification of this event is delivered via
+.BR waitpid (2).
+.LP
+Note that the killing signal will first cause signal-delivery-stop
+(on one tracee only),
+and only after it is injected by the tracer
+(or after it was dispatched to a thread which isn't traced),
+will death from the signal happen on
+.I all
+tracees within a multithreaded process.
+(The term "signal-delivery-stop" is explained below.)
+.LP
+.B SIGKILL
+operates similarly, with exceptions.
+No signal-delivery-stop is generated for
+.B SIGKILL
+and therefore the tracer can't suppress it.
+.B SIGKILL
+kills even within system calls
+(syscall-exit-stop is not generated prior to death by
+.BR SIGKILL ).
+The net effect is that
+.B SIGKILL
+always kills the process (all its threads),
+even if some threads of the process are ptraced.
+.LP
+When the tracee calls
+.BR _exit (2),
+it reports its death to its tracer.
+Other threads are not affected.
+.LP
+When any thread executes
+.BR exit_group (2),
+every tracee in its thread group reports its death to its tracer.
+.LP
+If the
+.B PTRACE_O_TRACEEXIT
+option is on,
+.B PTRACE_EVENT_EXIT
+will happen before actual death.
+This applies to exits via
+.BR exit (2),
+.BR exit_group (2),
+and signal deaths (except
+.BR SIGKILL ),
+and when threads are torn down on
+.BR execve (2)
+in a multithreaded process.
+.LP
+The tracer cannot assume that the ptrace-stopped tracee exists.
+There are many scenarios when the tracee may die while stopped (such as
+.BR SIGKILL ).
+Therefore, the tracer must be prepared to handle an
+.B ESRCH
+error on any ptrace operation.
+Unfortunately, the same error is returned if the tracee
+exists but is not ptrace-stopped
+(for commands which require a stopped tracee),
+or if it is not traced by the process which issued the ptrace call.
+The tracer needs to keep track of the stopped/running state of the tracee,
+and interpret
+.B ESRCH
+as "tracee died unexpectedly" only if it knows that the tracee has
+been observed to enter ptrace-stop.
+Note that there is no guarantee that
+.I waitpid(WNOHANG)
+will reliably report the tracee's death status if a
+ptrace operation returned
+.BR ESRCH .
+.I waitpid(WNOHANG)
+may return 0 instead.
+In other words, the tracee may be "not yet fully dead",
+but already refusing ptrace requests.
+.LP
+The tracer can't assume that the tracee
+.I always
+ends its life by reporting
+.I WIFEXITED(status)
+or
+.IR WIFSIGNALED(status) ;
+there are cases where this does not occur.
+For example, if a thread other than thread group leader does an
+.BR execve (2),
+it disappears;
+its PID will never be seen again,
+and any subsequent ptrace stops will be reported under
+the thread group leader's PID.
+.SS Stopped states
+A tracee can be in two states: running or stopped.
+.LP
+There are many kinds of states when the tracee is stopped, and in ptrace
+discussions they are often conflated.
+Therefore, it is important to use precise terms.
+.LP
+In this manual page, any stopped state in which the tracee is ready
+to accept ptrace commands from the tracer is called
+.IR ptrace-stop .
+Ptrace-stops can
+be further subdivided into
+.IR signal-delivery-stop ,
+.IR group-stop ,
+.IR syscall-stop ,
+and so on.
+These stopped states are described in detail below.
+.LP
+When the running tracee enters ptrace-stop, it notifies its tracer using
+.BR waitpid (2)
+(or one of the other "wait" system calls).
+Most of this manual page assumes that the tracer waits with:
+.LP
+    pid = waitpid(pid_or_minus_1, &status, __WALL);
+.LP
+Ptrace-stopped tracees are reported as returns with
+.I pid
+greater than 0 and
+.I WIFSTOPPED(status)
+true.
+.\" Denys Vlasenko:
+.\"     Do we require __WALL usage, or will just using 0 be ok? (With 0,
+.\"     I am not 100% sure there aren't ugly corner cases.) Are the
+.\"     rules different if user wants to use waitid? Will waitid require
+.\"     WEXITED?
+.\"
+.LP
+The
+.B __WALL
+flag does not include the
+.B WSTOPPED
+and
+.B WEXITED
+flags, but implies their functionality.
+.LP
+Setting the
+.B WCONTINUED
+flag when calling
+.BR waitpid (2)
+is not recommended: the "continued" state is per-process and
+consuming it can confuse the real parent of the tracee.
+.LP
+Use of the
+.B WNOHANG
+flag may cause
+.BR waitpid (2)
+to return 0 ("no wait results available yet")
+even if the tracer knows there should be a notification.
+Example:
+.nf
+
+    kill(tracee, SIGKILL);
+    waitpid(tracee, &status, __WALL | WNOHANG);
+.fi
+.\" FIXME:
+.\"     waitid usage? WNOWAIT?
+.\"     describe how wait notifications queue (or not queue)
+.LP
+The following kinds of ptrace-stops exist: signal-delivery-stops,
+group-stop, PTRACE_EVENT stops, syscall-stops
+.BR PTRACE_SINGLESTEP ,
+.BR PTRACE_SYSEMU ,
+and
+.BE PTRACE_SYSEMU_SINGLESTEP .
+They all are reported by
+.BR waitpid (2)
+with
+.I WIFSTOPPED(status)
+true.
+They may be differentiated by examining the value
+.IR status>>8 ,
+and if there is ambiguity in that value, by querying
+.BR PTRACE_GETSIGINFO .
+(Note: the
+.I WSTOPSIG(status)
+macro can't be used to perform this examination,
+because it returns the value
+(\fIstatus\>>8)\ \fB&\ 0xff\fP\fP.)
+.SS Signal-delivery-stop
+When a (possibly multithreaded) process receives any signal except
+.BR SIGKILL ,
+the kernel selects an arbitrary thread which handles the signal.
+(If the signal is generated with
+.BR tgkill (2),
+the target thread can be explicitly selected by the caller.)
+If the selected thread is traced, it enters signal-delivery-stop.
+At this point, the signal is not yet delivered to the process,
+and can be suppressed by the tracer.
+If the tracer doesn't suppress the signal,
+it passes the signal to the tracee in the next ptrace restart request.
+This second step of signal delivery is called
+.I "signal injection"
+in this manual page.
+Note that if the signal is blocked,
+signal-delivery-stop doesn't happen until the signal is unblocked,
+with the usual exception that
+.B SIGSTOP
+can't be blocked.
+.LP
+Signal-delivery-stop is observed by the tracer as
+.BR waitpid (2)
+returning with
+.I WIFSTOPPED(status)
+true, with the stopping signal returned by
+.IR WSTOPSIG(status) .
+If the stopping signal is
+.BR SIGTRAP ,
+this may be a different kind of ptrace-stop;
+see the "Syscall-stops" and "execve" sections below for details.
+If
+.I WSTOPSIG(status)
+returns a stopping signal, this may be a group-stop; see below.
+.SS Signal injection and suppression
+After signal-delivery-stop is observed by the tracer,
+the tracer should restart the tracee with the call
+.LP
+    ptrace(PTRACE_restart, pid, 0, sig)
+.LP
+where
+.B PTRACE_restart
+is one of the restarting ptrace requests.
+If
+.I sig
+is 0, then a signal is not delivered.
+Otherwise, the signal
+.I sig
+is delivered.
+This operation is called
+.I "signal injection"
+in this manual page, to distinguish it from signal-delivery-stop.
+.LP
+The
+.I sig
+value may be different from the
+.I WSTOPSIG(status)
+value: the tracer can cause a different signal to be injected.
+.LP
+Note that a suppressed signal still causes system calls to return
+prematurely.
+Restartable system calls will be restarted (the tracer will
+observe the tracee to execute
+.BR restart_syscall(2)
+if the tracer uses
+.BR PTRACE_SYSCALL );
+non-restartable system calls may fail with
+.B EINTR
+even though no observable signal is injected to the tracee.
+.LP
+Restarting ptrace commands issued in ptrace-stops other than
+signal-delivery-stop are not guaranteed to inject a signal, even if
+.I sig
+is nonzero.
+No error is reported; a nonzero
+.I sig
+may simply be ignored.
+Ptrace users should not try to "create a new signal" this way: use
+.BR tgkill (2)
+instead.
+.LP
+The fact that signal injection requests may be ignored
+when restarting the tracee after
+ptrace stops that are not signal-delivery-stops
+is a cause of confusion among ptrace users.
+One typical scenario is that the tracer observes group-stop,
+mistakes it for signal-delivery-stop, restarts the tracee with
+
+    ptrace(PTRACE_rest, pid, 0, stopsig)
+
+with the intention of injecting
+.IR stopsig ,
+but
+.I stopsig
+gets ignored and the tracee continues to run.
+.LP
+The
+.B SIGCONT
+signal has a side effect of waking up (all threads of)
+a group-stopped process.
+This side effect happens before signal-delivery-stop.
+The tracer can't suppress this side-effect (it can
+only suppress signal injection, which only causes the
+.BR SIGCONT
+handler to not be executed in the tracee, if such a handler is installed).
+In fact, waking up from group-stop may be followed by
+signal-delivery-stop for signal(s)
+.I other than
+.BR SIGCONT ,
+if they were pending when
+.B SIGCONT
+was delivered.
+In other words,
+.B SIGCONT
+may be not the first signal observed by the tracee after it was sent.
+.LP
+Stopping signals cause (all threads of) a process to enter group-stop.
+This side effect happens after signal injection, and therefore can be
+suppressed by the tracer.
+.LP
+In Linux 2.4 and earlier, the
+.B SIGSTOP
+signal can't be injected.
+.\" In the Linux 2.4 sources, in arch/i386/kernel/signal.c::do_signal(),
+.\" there is:
+.\"
+.\"             /* The debugger continued.  Ignore SIGSTOP.  */
+.\"             if (signr == SIGSTOP)
+.\"                     continue;
+.LP
+.B PTRACE_GETSIGINFO
+can be used to retrieve a
+.I siginfo_t
+structure which corresponds to the delivered signal.
+.B PTRACE_SETSIGINFO
+may be used to modify it.
+If
+.B PTRACE_SETSIGINFO
+has been used to alter
+.IR siginfo_t ,
+the
+.I si_signo
+field and the
+.I sig
+parameter in the restarting command must match,
+otherwise the result is undefined.
+.SS Group-stop
+When a (possibly multithreaded) process receives a stopping signal,
+all threads stop.
+If some threads are traced, they enter a group-stop.
+Note that the stopping signal will first cause signal-delivery-stop
+(on one tracee only), and only after it is injected by the tracer
+(or after it was dispatched to a thread which isn't traced),
+will group-stop be initiated on
+.I all
+tracees within the multithreaded process.
+As usual, every tracee reports its group-stop separately
+to the corresponding tracer.
+.LP
+Group-stop is observed by the tracer as
+.BR waitpid (2)
+returning with
+.I WIFSTOPPED(status)
+true, with the stopping signal available via
+.IR WSTOPSIG(status) .
+The same result is returned by some other classes of ptrace-stops,
+therefore the recommended practice is to perform the call
+.LP
+    ptrace(PTRACE_GETSIGINFO, pid, 0, &siginfo)
+.LP
+The call can be avoided if the signal is not
+.BR SIGSTOP ,
+.BR SIGTSTP ,
+.BR SIGTTIN ,
+or
+.BR SIGTTOU ;
+only these four signals are stopping signals.
+If the tracer sees something else, it can't be a group-stop.
+Otherwise, the tracer needs to call
+.BR PTRACE_GETSIGINFO .
+If
+.B PTRACE_GETSIGINFO
+fails with
+.BR EINVAL ,
+then it is definitely a group-stop.
+(Other failure codes are possible, such as
+.B ESRCH
+("no such process") if a
+.B SIGKILL
+killed the tracee.)
+.LP
+As of kernel 2.6.38,
+after the tracer sees the tracee ptrace-stop and until it
+restarts or kills it, the tracee will not run,
+and will not send notifications (except
+.B SIGKILL
+death) to the tracer, even if the tracer enters into another
+.BR waitpid (2)
+call.
+.LP
+The kernel behavior described in the previous paragraph
+causes a problem with transparent handling of stopping signals.
+If the tracer restarts the tracee after group-stop,
+the stopping signal
+is effectively ignored\(emthe tracee doesn't remain stopped, it runs.
+If the tracer doesn't restart the tracee before entering into the next
+.BR waitpid (2),
+future
+.B SIGCONT
+signals will not be reported to the tracer;
+this would cause the
+.B SIGCONT
+signals to have no effect on the tracee.
+.SS PTRACE_EVENT stops
+If the tracer sets
+.B PTRACE_O_TRACE_*
+options, the tracee will enter ptrace-stops called
+.B PTRACE_EVENT
+stops.
+.LP
+.B PTRACE_EVENT
+stops are observed by the tracer as
+.BR waitpid (2)
+returning with
+.IR WIFSTOPPED(status) ,
+and
+.I WSTOPSIG(status)
+returns
+.BR SIGTRAP .
+An additional bit is set in the higher byte of the status word:
+the value
+.I status>>8
+will be
+
+    (SIGTRAP | PTRACE_EVENT_foo << 8).
+
+The following events exist:
+.TP
+.B PTRACE_EVENT_VFORK
+Stop before return from
+.BR vfork (2)
+or
+.BR clone (2)
+with the
+.B CLONE_VFORK
+flag.
+When the tracee is continued after this stop, it will wait for child to
+exit/exec before continuing its execution
+(in other words, the usual behavior on
+.BR vfork (2)).
+.TP
+.B PTRACE_EVENT_FORK
+Stop before return from
+.BR fork (2)
+or
+.BR clone (2)
+with the exit signal set to
+.BR SIGCHLD .
+.TP
+.B PTRACE_EVENT_CLONE
+Stop before return from
+.BR clone (2)
+.TP
+.B PTRACE_EVENT_VFORK_DONE
+Stop before return from
+.BR vfork (2)
+or
+.BR clone (2)
+with the
+.B CLONE_VFORK
+flag,
+but after the child unblocked this tracee by exiting or execing.
+.LP
+For all four stops described above,
+the stop occurs in the parent (i.e., the tracee),
+not in the newly created thread.
+.BR PTRACE_GETEVENTMSG
+can be used to retrieve the new thread's ID.
+.TP
+.B PTRACE_EVENT_EXEC
+Stop before return from
+.BR execve (2).
+.TP
+.B PTRACE_EVENT_EXIT
+Stop before exit (including death from
+.BR exit_group (2)),
+signal death, or exit caused by
+.BR execve (2)
+in a multithreaded process.
+.B PTRACE_GETEVENTMSG
+returns the exit status.
+Registers can be examined
+(unlike when "real" exit happens).
+The tracee is still alive; it needs to be
+.BR PTRACE_CONT ed
+or
+.BR PTRACE_DETACH ed
+to finish exiting.
+.LP
+.B PTRACE_GETSIGINFO
+on
+.B PTRACE_EVENT
+stops returns
+.B SIGTRAP in
+.IR si_signo ,
+with
+.I si_code
+set to
+.IR "(event<<8)\ |\ SIGTRAP" .
+.SS Syscall-stops
+If the tracee was restarted by
+.BR PTRACE_SYSCALL ,
+the tracee enters
+syscall-enter-stop just prior to entering any system call.
+If the tracer restarts the tracee with
+.BR PTRACE_SYSCALL ,
+the tracee enters syscall-exit-stop when the system call is finished,
+or if it is interrupted by a signal.
+(That is, signal-delivery-stop never happens between syscall-enter-stop
+and syscall-exit-stop; it happens
+.I after
+syscall-exit-stop.)
+.LP
+Other possibilities are that the tracee may stop in a
+.B PTRACE_EVENT
+stop, exit (if it entered
+.BR _exit (2)
+or
+.BR exit_group (2)),
+be killed by
+.BR SIGKILL ,
+or die silently (if it is a thread group leader, the
+.BR execve (2)
+happened in another thread,
+and that thread is not traced by the same tracer;
+this situation is discussed later).
+.LP
+Syscall-enter-stop and syscall-exit-stop are observed by the tracer as
+.BR waitpid (2)
+returning with
+.I WIFSTOPPED(status)
+true, and
+.I WSTOPSIG(status)
+giving
+.BR SIGTRAP .
+If the
+.B PTRACE_O_TRACESYSGOOD
+option was set by the tracer, then
+.I WSTOPSIG(status)
+will give the value
+.IR "(SIGTRAP\ |\ 0x80)" .
+.LP
+Syscall-stops can be distinguished from signal-delivery-stop with
+.B SIGTRAP
+by querying
+.BR PTRACE_GETSIGINFO
+for the following cases:
+.TP
+.IR si_code " <= 0"
+.B SIGTRAP
+was delivered as a result of a userspace action,
+for example, a system call
+.RB ( tgkill (2),
+.BR kill (2),
+.BR sigqueue (3),
+etc.),
+expiration of a POSIX timer,
+change of state on a POSIX message queue,
+or completion of an asynchronous I/O request.
+.TP
+.IR si_code " == SI_KERNEL (0x80)"
+.B SIGTRAP
+was sent by the kernel.
+.TP
+.IR si_code " == SIGTRAP or " si_code " == (SIGTRAP|0x80)"
+This is a syscall-stop.
+.LP
+However, syscall-stops happen very often (twice per system call),
+and performing
+.B PTRACE_GETSIGINFO
+for every syscall-stop may be somewhat expensive.
+.LP
+Some architectures allow the cases to be distinguished
+by examining registers.
+For example, on x86,
+.I rax
+==
+.RB - ENOSYS
+in syscall-enter-stop.
+Since
+.B SIGTRAP
+(like any other signal) always happens
+.I after
+syscall-exit-stop,
+and at this point
+.I rax
+almost never contains
+.RB - ENOSYS ,
+the
+.B SIGTRAP
+looks like "syscall-stop which is not syscall-enter-stop";
+in other words, it looks like a
+"stray syscall-exit-stop" and can be detected this way.
+But such detection is fragile and is best avoided.
+.LP
+Using the
+.B PTRACE_O_TRACESYSGOOD
+option is the recommended method to distinquish syscall-stops
+from other kinds of ptrace-stops,
+since it is reliable and does not incur a performance penalty.
+.LP
+Syscall-enter-stop and syscall-exit-stop are
+indistinguishable from each other by the tracer.
+The tracer needs to keep track of the sequence of
+ptrace-stops in order to not misinterpret syscall-enter-stop as
+syscall-exit-stop or vice versa.
+The rule is that syscall-enter-stop is
+always followed by syscall-exit-stop,
+.B PTRACE_EVENT
+stop or the tracee's death;
+no other kinds of ptrace-stop can occur in between.
+.LP
+If after syscall-enter-stop,
+the tracer uses a restarting command other than
+.BR PTRACE_SYSCALL ,
+syscall-exit-stop is not generated.
+.LP
+.B PTRACE_GETSIGINFO
+on syscall-stops returns
+.B SIGTRAP
+in
+.IR si_signo ,
+with
+.I si_code
+set to
+.B SIGTRAP
+or
+.IR (SIGTRAP|0x80) .
+.SS PTRACE_SINGLESTEP, PTRACE_SYSEMU, PTRACE_SYSEMU_SINGLESTEP stops
+[Details of these kinds of stops are yet to be documented.]
+.\"
+.\" FIXME
+.\" document stops occurring with PTRACE_SINGLESTEP, PTRACE_SYSEMU,
+.\" PTRACE_SYSEMU_SINGLESTEP
+.SS Informational and restarting ptrace commands
+Most ptrace commands (all except
 .BR PTRACE_ATTACH ,
-and the effects of
-.BR PTRACE_TRACEME .
-Although perhaps not intended, under Linux a traced child can be
-detached in this way regardless of which method was used to initiate
-tracing.
-(\fIaddr\fP is ignored.)
+.BR PTRACE_TRACEME ,
+and
+.BR PTRACE_KILL )
+require the tracee to be in a ptrace-stop, otherwise they fail with
+.BR ESRCH .
+.LP
+When the tracee is in ptrace-stop,
+the tracer can read and write data to
+the tracee using informational commands.
+These commands leave the tracee in ptrace-stopped state:
+.LP
+.nf
+    ptrace(PTRACE_PEEKTEXT/PEEKDATA/PEEKUSER, pid, addr, 0);
+    ptrace(PTRACE_POKETEXT/POKEDATA/POKEUSER, pid, addr, long_val);
+    ptrace(PTRACE_GETREGS/GETFPREGS, pid, 0, &struct);
+    ptrace(PTRACE_SETREGS/SETFPREGS, pid, 0, &struct);
+    ptrace(PTRACE_GETSIGINFO, pid, 0, &siginfo);
+    ptrace(PTRACE_SETSIGINFO, pid, 0, &siginfo);
+    ptrace(PTRACE_GETEVENTMSG, pid, 0, &long_var);
+    ptrace(PTRACE_SETOPTIONS, pid, 0, PTRACE_O_flags);
+.fi
+.LP
+Note that some errors are not reported.
+For example, setting signal information
+.RI ( siginfo )
+may have no effect in some ptrace-stops, yet the call may succeed
+(return 0 and not set
+.IR errno );
+querying
+.B PTRACE_GETEVENTMSG
+may succeed and return some random value if current ptrace-stop
+is not documented as returning a meaningful event message.
+.LP
+The call
+
+    ptrace(PTRACE_SETOPTIONS, pid, 0, PTRACE_O_flags);
+
+affects one tracee.
+The tracee's current flags are replaced.
+Flags are inherited by new tracees created and "auto-attached" via active
+.BR PTRACE_O_TRACEFORK ,
+.BR PTRACE_O_TRACEVFORK ,
+or
+.BR PTRACE_O_TRACECLONE
+options.
+.LP
+Another group of commands makes the ptrace-stopped tracee run.
+They have the form:
+.LP
+    ptrace(cmd, pid, 0, sig);
+.LP
+where
+.I cmd
+is
+.BR PTRACE_CONT ,
+.BR PTRACE_DETACH ,
+.BR PTRACE_SYSCALL ,
+.BR PTRACE_SINGLESTEP ,
+.BR PTRACE_SYSEMU ,
+or
+.BR PTRACE_SYSEMU_SINGLESTEP.
+If the tracee is in signal-delivery-stop,
+.I sig
+is the signal to be injected (if it is nonzero).
+Otherwise,
+.I sig
+may be ignored.
+(When restarting a tracee from a ptrace-stop other than signal-delivery-stop,
+recommended practice is to always pass 0 in
+.I sig .)
+.SS Attaching and detaching
+A thread can be attached to the tracer using the call
+
+    ptrace(PTRACE_ATTACH, pid, 0, 0);
+
+This also sends
+.B SIGSTOP
+to this thread.
+If the tracer wants this
+.B SIGSTOP
+to have no effect, it needs to suppress it.
+Note that if other signals are concurrently sent to
+this thread during attach,
+the tracer may see the tracee enter signal-delivery-stop
+with other signal(s) first!
+The usual practice is to reinject these signals until
+.B SIGSTOP
+is seen, then suppress
+.B SIGSTOP
+injection.
+The design bug here is that a ptrace attach and a concurrently delivered
+.B SIGSTOP
+may race and the concurrent
+.B SIGSTOP
+may be lost.
+.\"
+.\" FIXME: Describe how to attach to a thread which is already
+.\"        group-stopped.
+.LP
+Since attaching sends
+.B SIGSTOP
+and the tracer usually suppresses it, this may cause a stray
+.I EINTR
+return from the currently executing system call in the tracee,
+as described in the "signal injection and suppression" section.
+.LP
+The request
+
+    ptrace(PTRACE_TRACEME, 0, 0, 0);
+
+turns the calling thread into a tracee.
+The thread continues to run (doesn't enter ptrace-stop).
+A common practice is to follow the
+.B PTRACE_TRACEME
+with
+
+    raise(SIGSTOP);
+
+and allow the parent (which is our tracer now) to observe our
+signal-delivery-stop.
+.LP
+If the
+.BR PTRACE_O_TRACEFORK ,
+.BR PTRACE_O_TRACEVFORK ,
+or
+.BR PTRACE_O_TRACECLONE
+options are in effect, then children created by, respectively,
+.BR vfork (2)
+or
+.BR clone (2)
+with the
+.B CLONE_VFORK
+flag,
+.BR fork (2)
+or
+.BR clone (2)
+with the exit signal set to
+.BR SIGCHLD ,
+and other kinds of
+.BR clone (2),
+are automatically attached to the same tracer which traced their parent.
+.B SIGSTOP
+is delivered to the children, causing them to enter
+signal-delivery-stop after they exit the system call which created them.
+.LP
+Detaching of the tracee is performed by:
+
+    ptrace(PTRACE_DETACH, pid, 0, sig);
+
+.B PTRACE_DETACH
+is a restarting operation;
+therefore it requires the tracee to be in ptrace-stop.
+If the tracee is in signal-delivery-stop, a signal can be injected.
+Otherwise, the
+.I sig
+parameter may be silently ignored.
+.LP
+If the tracee is running when the tracer wants to detach it,
+the usual solution is to send
+.B SIGSTOP
+(using
+.BR tgkill (2),
+to make sure it goes to the correct thread),
+wait for the tracee to stop in signal-delivery-stop for
+.B SIGSTOP
+and then detach it (suppressing
+.B SIGSTOP
+injection).
+A design bug is that this can race with concurrent
+.BR SIGSTOP s.
+Another complication is that the tracee may enter other ptrace-stops
+and needs to be restarted and waited for again, until
+.B SIGSTOP
+is seen.
+Yet another complication is to be sure that
+the tracee is not already ptrace-stopped,
+because no signal delivery happens while it is\(emnot even
+.BR SIGSTOP .
+.\" FIXME: Describe how to detach from a group-stopped tracee so that it
+.\"        doesn't run, but continues to wait for SIGCONT.
+.LP
+If the tracer dies, all tracees are automatically detached and restarted,
+unless they were in group-stop.
+Handling of restart from group-stop is currently buggy,
+but the "as planned" behavior is to leave tracee stopped and waiting for
+.BR SIGCONT .
+If the tracee is restarted from signal-delivery-stop,
+the pending signal is injected.
+.SS execve(2) under ptrace
+.\" clone(2) THREAD_CLONE says:
+.\"     If  any  of the threads in a thread group performs an execve(2),
+.\"     then all threads other than the thread group leader are terminated,
+.\"     and the new program is executed in the thread group leader.
+.\"
+When one thread in a multithreaded process calls
+.BR execve (2),
+the kernel destroys all other threads in the process,
+.\" In kernel 3.1 sources, see fs/exec.c::de_thread()
+and resets the thread ID of the execing thread to the
+thread group ID (process ID).
+(Or, to put things another way, when a multithreaded process does an
+.BR execve (2),
+at completion of the call, it appears as though the
+.BR execve (2)
+occurred in the thread group leader, regardless of which thread did the
+.BR execve (2).)
+This resetting of the thread ID looks very confusing to tracers:
+.IP * 3
+All other threads stop in
+.B PTRACE_EVENT_EXIT
+stop, if the
+.BR PTRACE_O_TRACEEXIT
+option was turned on.
+Then all other threads except the thread group leader report
+death as if they exited via
+.BR _exit (2)
+with exit code 0.
+.IP *
+Then a
+.B PTRACE_EVENT_EXEC
+stop happens, if the
+.BR PTRACE_O_TRACEEXEC
+option was turned on.
+.IP *
+The execing tracee changes its thread ID while it is in the
+.BR execve (2).
+(Remember, under ptrace, the "pid" returned from
+.BR waitpid (2),
+or fed into ptrace calls, is the tracee's thread ID.)
+That is, the tracee's thread ID is reset to be the same as its process ID,
+which is the same as the thread group leader's thread ID.
+.IP *
+If the thread group leader has reported its death by this time,
+it appears to the tracer that
+the dead thread leader "reappears from nowhere".
+If the thread group leader was still alive,
+for the tracer this may look as if thread group leader
+returns from a different system call than it entered,
+or even "returned from a system call even though
+it was not in any system call".
+If the thread group leader was not traced
+(or was traced by a different tracer), then during
+.BR execve (2)
+it will appear as if it has become a tracee of
+the tracer of the execing tracee.
+.LP
+All of the above effects are the artifacts of
+the thread ID change in the tracee.
+.LP
+The
+.B PTRACE_O_TRACEEXEC
+option is the recommended tool for dealing with this situation.
+It enables
+.B PTRACE_EVENT_EXEC
+stop, which occurs before
+.BR execve (2)
+returns.
+First, it enables
+.BR PTRACE_EVENT_EXEC -stop,
+which occurs before
+.BR execve(2)
+returns.
+In this stop, the tracer can use
+.B PTRACE_GETEVENTMSG
+to retrieve the tracee's former thread ID.
+(This feature was introduced in Linux 3.0).
+Second, the
+.B PTRACE_O_TRACEEXEC
+option disables legacy
+.B SIGTRAP
+generation on
+.BR execve (2).
+.LP
+When the tracer receives
+.B PTRACE_EVENT_EXEC
+stop notification,
+it is guaranteed that except this tracee and the thread group leader,
+no other threads from the process are alive.
+.LP
+On receiving the
+.B PTRACE_EVENT_EXEC
+stop notification,
+the tracer should clean up all its internal
+data structures describing the threads of this process,
+and retain only one data structure\(emone which
+describes the single still running tracee, with
+
+    thread ID == thread group ID == process id.
+.LP
+Currently, there is no way to retrieve the former
+thread ID of the execing tracee.
+If the tracer doesn't keep track of its tracees' thread group relations,
+it may be unable to know which tracee execed and therefore no longer
+exists under the old thread ID due to a thread ID change.
+.LP
+Example: two threads call
+.BR execve (2)
+at the same time:
+.LP
+.nf
+*** we get syscall-entry-stop in thread 1: **
+PID1 execve("/bin/foo", "foo" <unfinished ...>
+*** we issue PTRACE_SYSCALL for thread 1 **
+*** we get syscall-entry-stop in thread 2: **
+PID2 execve("/bin/bar", "bar" <unfinished ...>
+*** we issue PTRACE_SYSCALL for thread 2 **
+*** we get PTRACE_EVENT_EXEC for PID0, we issue PTRACE_SYSCALL **
+*** we get syscall-exit-stop for PID0: **
+PID0 <... execve resumed> )             = 0
+.fi
+.LP
+In this situation, there is no way to know which
+.BR execve (2)
+succeeded.
+.LP
+If the
+.B PTRACE_O_TRACEEXEC
+option is
+.I not
+in effect for the execing tracee, the kernel delivers an extra
+.B SIGTRAP
+to the tracee after
+.BR execve (2)
+returns.
+This is an ordinary signal (similar to one which can be
+generated by
+.IR "kill -TRAP" ),
+not a special kind of ptrace-stop.
+Employing
+.B PTRACE_GETSIGINFO
+for this signal returns
+.I si_code
+set to 0
+.RI ( SI_USER ).
+This signal may be blocked by signal mask,
+and thus may be delivered (much) later.
+.LP
+Usually, the tracer (for example,
+.BR strace (1))
+would not want to show this extra post-execve
+.B SIGTRAP
+signal to the user, and would suppress its delivery to the tracee (if
+.B SIGTRAP
+is set to
+.BR SIG_DFL ,
+it is a killing signal).
+However, determining
+.I which
+.B SIGTRAP
+to suppress is not easy.
+Setting the
+.B PTRACE_O_TRACEEXEC
+option and thus suppressing this extra
+.B SIGTRAP
+is the recommended approach.
+.SS Real parent
+The ptrace API (ab)uses the standard UNIX parent/child signaling over
+.BR waitpid (2).
+This used to cause the real parent of the process to stop receiving
+several kinds of
+.BR waitpid (2)
+notifications when the child process is traced by some other process.
+.LP
+Many of these bugs have been fixed, but as of Linux 2.6.38 several still
+exist; see BUGS below.
+.LP
+As of Linux 2.6.38, the following is believed to work correctly:
+.IP * 3
+exit/death by signal is reported first to the tracer, then,
+when the tracer consumes the
+.BR waitpid (2)
+result, to the real parent (to the real parent only when the
+whole multithreaded process exits).
+If the tracer and the real parent are the same process,
+the report is sent only once.
 .SH "RETURN VALUE"
 On success,
 .B PTRACE_PEEK*
@@ -406,18 +1573,18 @@ On error, all requests return \-1, and
 is set appropriately.
 Since the value returned by a successful
 .B PTRACE_PEEK*
-request may be \-1, the caller must check
+request may be \-1, the caller must clear
 .I errno
-after such requests to determine whether or not an error occurred.
+before the call, and then check it afterward
+to determine whether or not an error occurred.
 .SH ERRORS
 .TP
 .B EBUSY
-(i386 only) There was an error with allocating or freeing a debug
-register.
+(i386 only) There was an error with allocating or freeing a debug register.
 .TP
 .B EFAULT
 There was an attempt to read from or write to an invalid area in
-the parent's or child's memory,
+the tracer's or the tracee's memory,
 probably because the area wasn't mapped or accessible.
 Unfortunately, under Linux, different variations of this fault
 will return
@@ -430,26 +1597,29 @@ more or less arbitrarily.
 An attempt was made to set an invalid option.
 .TP
 .B EIO
-\fIrequest\fP is invalid, or an attempt was made to read from or
-write to an invalid area in the parent's or child's memory,
+.I request
+is invalid, or an attempt was made to read from or
+write to an invalid area in the tracer's or the tracee's memory,
 or there was a word-alignment violation,
 or an invalid signal was specified during a restart request.
 .TP
 .B EPERM
 The specified process cannot be traced.
 This could be because the
-parent has insufficient privileges (the required capability is
+tracer has insufficient privileges (the required capability is
 .BR CAP_SYS_PTRACE );
 unprivileged processes cannot trace processes that they
 cannot send signals to or those running
 set-user-ID/set-group-ID programs, for obvious reasons.
-Alternatively, the process may already be being traced, or be
+Alternatively, the process may already be being traced,
+or (on kernels before 2.6.26) be
 .BR init (8)
 (PID 1).
 .TP
 .B ESRCH
 The specified process does not exist, or is not currently being traced
-by the caller, or is not stopped (for requests that require that).
+by the caller, or is not stopped
+(for requests that require a stopped tracee).
 .SH "CONFORMING TO"
 SVr4, 4.3BSD.
 .SH NOTES
@@ -458,81 +1628,102 @@ Although arguments to
 are interpreted according to the prototype given,
 glibc currently declares
 .BR ptrace ()
-as a variadic function with only the \fIrequest\fP argument fixed.
+as a variadic function with only the
+.I request
+argument fixed.
 This means that unneeded trailing arguments may be omitted,
 though doing so makes use of undocumented
 .BR gcc (1)
 behavior.
 .LP
+In Linux kernels before 2.6.26,
+.\" See commit 00cd5c37afd5f431ac186dd131705048c0a11fdb
 .BR init (8),
 the process with PID 1, may not be traced.
 .LP
-The layout of the contents of memory and the USER area are quite OS- and
-architecture-specific.
+The layout of the contents of memory and the USER area are
+quite operating-system- and architecture-specific.
 The offset supplied, and the data returned,
 might not entirely match with the definition of
 .IR "struct user" .
 .\" See http://lkml.org/lkml/2008/5/8/375
 .LP
-The size of a "word" is determined by the OS variant
+The size of a "word" is determined by the operating-system variant
 (e.g., for 32-bit Linux it is 32 bits, etc.).
 .LP
-Tracing causes a few subtle differences in the semantics of
-traced processes.
-For example, if a process is attached to with
-.BR PTRACE_ATTACH ,
-its original parent can no longer receive notification via
-.BR wait (2)
-when it stops, and there is no way for the new parent to
-effectively simulate this notification.
-.LP
-When the parent receives an event with
-.B PTRACE_EVENT_*
-set,
-the child is not in the normal signal delivery path.
-This means the parent cannot do
-.BR ptrace (PTRACE_CONT)
-with a signal or
-.BR ptrace (PTRACE_KILL).
-.BR kill (2)
-with a
-.B SIGKILL
-signal can be used instead to kill the child process
-after receiving one of these messages.
-.LP
 This page documents the way the
 .BR ptrace ()
 call works currently in Linux.
 Its behavior differs noticeably on other flavors of UNIX.
 In any case, use of
 .BR ptrace ()
-is highly OS- and architecture-specific.
-.LP
-The SunOS man page describes
-.BR ptrace ()
-as "unique and arcane", which it is.
-The proc-based debugging interface
-present in Solaris 2 implements a superset of
-.BR ptrace ()
-functionality in a more powerful and uniform way.
+is highly specific to the operating system and architecture.
 .SH BUGS
 On hosts with 2.6 kernel headers,
 .B PTRACE_SETOPTIONS
-is declared
-with a different value than the one for 2.4.
-This leads to applications compiled with such
+is declared with a different value than the one for 2.4.
+This leads to applications compiled with 2.6 kernel
 headers failing when run on 2.4 kernels.
 This can be worked around by redefining
 .B PTRACE_SETOPTIONS
 to
 .BR PTRACE_OLDSETOPTIONS ,
 if that is defined.
+.LP
+Group-stop notifications are sent to the tracer, but not to real parent.
+Last confirmed on 2.6.38.6.
+.LP
+If a thread group leader is traced and exits by calling
+.BR _exit (2),
+.\" Note from Denys Vlasenko:
+.\"     Here "exits" means any kind of death - _exit, exit_group,
+.\"     signal death. Signal death and exit_group cases are trivial,
+.\"     though: since signal death and exit_group kill all other threads
+.\"     too, "until all other threads exit" thing happens rather soon
+.\"     in these cases. Therefore, only _exit presents observably
+.\"     puzzling behavior to ptrace users: thread leader _exit's,
+.\"     but WIFEXITED isn't reported! We are trying to explain here
+.\"     why it is so.
+a
+.B PTRACE_EVENT_EXIT
+stop will happen for it (if requested), but the subsequent
+.B WIFEXITED
+notification will not be delivered until all other threads exit.
+As explained above, if one of other threads calls
+.BR execve (2),
+the death of the thread group leader will
+.I never
+be reported.
+If the execed thread is not traced by this tracer,
+the tracer will never know that
+.BR execve (2)
+happened.
+One possible workaround is to
+.B PTRACE_DETACH
+the thread group leader instead of restarting it in this case.
+Last confirmed on 2.6.38.6.
+.\"  FIXME: ^^^ need to test/verify this scenario
+.LP
+A
+.B SIGKILL
+signal may still cause a
+.B PTRACE_EVENT_EXIT
+stop before actual signal death.
+This may be changed in the future;
+.B SIGKILL
+is meant to always immediately kill tasks even under ptrace.
+Last confirmed on 2.6.38.6.
 .SH "SEE ALSO"
 .BR gdb (1),
 .BR strace (1),
+.BR clone (2),
 .BR execve (2),
 .BR fork (2),
-.BR signal (2),
-.BR wait (2),
+.BR gettid (2),
+.BR sigaction (2),
+.BR tgkill (2),
+.BR vfork (2),
+.BR waitpid (2),
 .BR exec (3),
-.BR capabilities (7)
+.BR capabilities (7),
+.BR signal (7)
index 1a842af..5bec56c 100644 (file)
@@ -21,6 +21,8 @@
 .\" Formatted or processed versions of this manual, if unaccompanied by
 .\" the source, must acknowledge the copyright and authors of this work.
 .\"
+.\" FIXME: This page could be improved with an example program.
+.\"
 .TH RECVMMSG 2 2011-10-04 "Linux" "Linux Programmer's Manual"
 .SH NAME
 recvmmsg \- receive multiple messages on a socket
index a32d3cf..ada9942 100644 (file)
@@ -15,7 +15,8 @@ request_key \- Request a key from the kernel's key management facility
 .B #include <keyutils.h>
 .sp
 .BI "key_serial_t request_key(const char *" type ", const char *" description ,
-.BI "const char *" callout_info ", key_serial_t " keyring ");"
+.BI "                         const char *" callout_info ,
+.BI "                         key_serial_t " keyring ");"
 .SH DESCRIPTION
 .BR request_key ()
 asks the kernel to find a key of the given
index 2211915..7ac9cf1 100644 (file)
@@ -27,7 +27,7 @@
 .\" 1996-04-10 Markus Kuhn <mskuhn@cip.informatik.uni-erlangen.de>
 .\"            revision
 .\"
-.TH SCHED_RR_GET_INTERVAL 2 2007-04-06 "Linux" "Linux Programmer's Manual"
+.TH SCHED_RR_GET_INTERVAL 2 2011-10-16 "Linux" "Linux Programmer's Manual"
 .SH NAME
 sched_rr_get_interval \- get the SCHED_RR interval for the named process
 .SH SYNOPSIS
@@ -36,10 +36,19 @@ sched_rr_get_interval \- get the SCHED_RR interval for the named process
 .BI "int sched_rr_get_interval(pid_t " pid ", struct timespec * " tp );
 .SH DESCRIPTION
 .BR sched_rr_get_interval ()
-writes into the \fItimespec\fP structure pointed to by \fItp\fP the
-round-robin time quantum for the process identified by \fIpid\fP.
+writes into the
+.I timespec
+structure pointed to by
+.I tp
+the round-robin time quantum for the process identified by
+.IR pid .
+The specified process should be running under the
+.B SCHED_RR
+scheduling policy.
 
-The \fItimespec\fP structure has the following form:
+The
+.I timespec
+structure has the following form:
 
 .in +4n
 .nf
@@ -51,11 +60,9 @@ struct timespec {
 .in
 
 If
-\fIpid\fP is zero, the time quantum for the calling process is written
-into \fI*tp\fP.
-The identified process should be running under the
-.B SCHED_RR
-scheduling policy.
+.I pid
+is zero, the time quantum for the calling process is written into
+.IR *tp .
 .\" FIXME . On Linux, sched_rr_get_interval()
 .\" returns the timeslice for SCHED_OTHER processes -- this timeslice
 .\" is influenced by the nice value.
@@ -64,11 +71,6 @@ scheduling policy.
 .\" The round-robin time quantum value is not alterable under Linux
 .\" 1.3.81.
 .\"
-POSIX systems on which
-.BR sched_rr_get_interval ()
-is available define
-.B _POSIX_PRIORITY_SCHEDULING
-in \fI<unistd.h>\fP.
 .SH "RETURN VALUE"
 On success,
 .BR sched_rr_get_interval ()
@@ -88,21 +90,21 @@ Invalid pid.
 The system call is not yet implemented (only on rather old kernels).
 .TP
 .B ESRCH
-The process whose ID is \fIpid\fP could not be found.
+Could not find a process with the ID
+.IR pid .
 .SH "CONFORMING TO"
 POSIX.1-2001.
 .SH NOTES
+POSIX systems on which
+.BR sched_rr_get_interval ()
+is available define
+.B _POSIX_PRIORITY_SCHEDULING
+in
+.IR <unistd.h> .
 .SS Linux Notes
-.\" FIXME
-.\" From at least Linux 2.6.9, the following is no longer true
-.\" for SCHED_RR processes.  For RR processes the timeslice is always
-.\" DEF_TIMESLICE, or 0.1 secs.
-.\" Was the following really true for older kernels?
-.\" Must build a 2.6.8 kernel and retest, and rewrite the following text
-.\" appropriately.
 POSIX does not specify any mechanism for controlling the size of the
 round-robin time quantum.
-However, Linux provides a (nonportable) method of doing this.
+Older Linux kernels provide a (nonportable) method of doing this.
 The quantum can be controlled by adjusting the process's nice value (see
 .BR setpriority (2)).
 Assigning a negative (i.e., high) nice value results in a longer quantum;
@@ -110,6 +112,11 @@ assigning a positive (i.e., low) nice value results in a shorter quantum.
 The default quantum is 0.1 seconds;
 the degree to which changing the nice value affects the
 quantum has varied somewhat across kernel versions.
+Since Linux 2.6.24,
+.\" commit a4ec24b48ddef1e93f7578be53270f0b95ad666c
+the
+.BR SCHED_RR
+quantum cannot be modified.
 .\" .SH BUGS
 .\" As of Linux 1.3.81
 .\" .BR sched_rr_get_interval ()
index f223f31..eaeeb3a 100644 (file)
@@ -35,7 +35,7 @@
 .\" Modified Oct 2003 by aeb
 .\" Modified 2004-07-01 by mtk
 .\"
-.TH SEND 2 2011-10-01 "Linux" "Linux Programmer's Manual"
+.TH SEND 2 2012-02-27 "Linux" "Linux Programmer's Manual"
 .SH NAME
 send, sendto, sendmsg \- send a message on a socket
 .SH SYNOPSIS
@@ -401,6 +401,11 @@ but glibc currently types it as
 .\" The problem is an underlying kernel issue: the size of the
 .\" __kernel_size_t type used to type this field varies
 .\" across architectures, but socklen_t is always 32 bits.
+
+See
+.BR sendmmsg(2)
+for information about a Linux-specific system call
+that can be used to transmit multiple datagrams in a single call.
 .SH BUGS
 Linux may return
 .B EPIPE
@@ -417,6 +422,7 @@ is shown in
 .BR recv (2),
 .BR select (2),
 .BR sendfile (2),
+.BR sendmmsg (2),
 .BR shutdown (2),
 .BR socket (2),
 .BR write (2),
diff --git a/original/man2/sendmmsg.2 b/original/man2/sendmmsg.2
new file mode 100644 (file)
index 0000000..12ad3ff
--- /dev/null
@@ -0,0 +1,172 @@
+.\" Copyright (c) 2012 by Michael Kerrisk <mtk.manpages@gmail.com>
+.\" with some material from a draft by
+.\" Stephan Mueller <stephan.mueller@atsec.com>
+.\" in turn based on Andi Kleen's recvmmsg.2 page.
+.\"
+.\" Permission is granted to make and distribute verbatim copies of this
+.\" manual provided the copyright notice and this permission notice are
+.\" preserved on all copies.
+.\"
+.\" Permission is granted to copy and distribute modified versions of this
+.\" manual under the conditions for verbatim copying, provided that the
+.\" entire resulting derived work is distributed under the terms of a
+.\" permission notice identical to this one.
+.\"
+.\" Since the Linux kernel and libraries are constantly changing, this
+.\" manual page may be incorrect or out-of-date.  The author(s) assume no
+.\" responsibility for errors or omissions, or for damages resulting from
+.\" the use of the information contained herein.  The author(s) may not
+.\" have taken the same level of care in the production of this manual,
+.\" which is licensed free of charge, as they might when working
+.\" professionally.
+.\"
+.\" Formatted or processed versions of this manual, if unaccompanied by
+.\" the source, must acknowledge the copyright and authors of this work.
+.\"
+.\" FIXME Adding an example program would improve this page
+.\"
+.TH SENDMMSG 2 2012-02-27 "Linux" "Linux Programmer's Manual"
+.SH NAME
+sendmmsg \- send multiple messages on a socket
+.SH SYNOPSIS
+.nf
+.B "#define _GNU_SOURCE"
+.BI "#include <sys/socket.h>"
+
+.BI "int sendmmsg(int " sockfd ", struct mmsghdr *" msgvec \
+", unsigned int " vlen ","
+.BI "             unsigned int " flags ");"
+.fi
+.SH DESCRIPTION
+The
+.BR sendmmsg ()
+system call is an extension of
+.BR sendmsg (2)
+that allows the caller to transmit multiple messages on a socket
+using a single system call.
+(This has performance benefits for some applications.)
+.\" See commit 228e548e602061b08ee8e8966f567c12aa079682
+
+The
+.I sockfd
+argument is the file descriptor of the socket
+on which data is to be transmitted.
+
+The
+.I msgvec
+argument is a pointer to an array of
+.I mmsghdr
+structures.
+The size of this array is specified in
+.IR vlen .
+
+The
+.I mmsghdr
+structure is defined in
+.I <sys/socket.h>
+as:
+
+.in +4n
+.nf
+struct mmsghdr {
+    struct msghdr msg_hdr;  /* Message header */
+    unsigned int  msg_len;  /* Number of bytes transmitted */
+};
+.fi
+.in
+.PP
+The
+.I msg_hdr
+field is a
+.I msghdr
+structure, as described in
+.BR sendmsg (2).
+The
+.I msg_len
+field is used to return the number of bytes sent from the message in
+.IR msg_hdr
+(i.e., the same as the return value from a single
+.BR sendmsg (2)
+call).
+
+The
+.I flags
+argument contains flags ORed together.
+The flags are the same as for
+.BR sendmsg (2).
+
+A blocking
+.BR sendmmsg ()
+call blocks until
+.I vlen
+messages have been sent.
+A nonblocking call sends as many messages as possible
+(up to the limit specified by
+.IR vlen )
+and returns immediately.
+
+On return from
+.BR sendmmsg (),
+the
+.I msg_len
+fields of successive elements of
+.IR msgvec
+are updated to contain the number of bytes transmitted from the corresponding
+.IR msg_hdr .
+The return value of the call indicates the number of elements of
+.I msgvec
+that have been updated.
+.SH RETURN VALUE
+On success,
+.BR sendmmsg ()
+returns the number of messages sent from
+.IR msgvec ;
+if this is less than
+.IR vlen ,
+the caller can retry with a further
+.BR sendmmsg ()
+call to send the remaining messages.
+
+On error, \-1 is returned, and
+.I errno
+is set to indicate the error.
+.SH ERRORS
+Errors are as for
+.BR sendmsg (2).
+An error is returned only if no datagrams could be sent.
+.\" commit 728ffb86f10873aaf4abd26dde691ee40ae731fe
+.\"     ... only return an error if no datagrams could be sent.
+.\"     If less than the requested number of messages were sent, the application
+.\"     must retry starting at the first failed one and if the problem is
+.\"     persistent the error will be returned.
+.\"
+.\"     This matches the behaviour of other syscalls like read/write - it
+.\"     is not an error if less than the requested number of elements are sent.
+.SH VERSIONS
+The
+.BR sendmmsg ()
+system call was added in Linux 3.0.
+Support in glibc was added in version 2.14.
+.SH CONFORMING TO
+.BR sendmmsg ()
+is Linux-specific.
+.SH NOTES
+The value specified in
+.I vlen
+is capped to
+.B UIO_MAXIOV
+(1024).
+.\" commit 98382f419f32d2c12d021943b87dea555677144b
+.\"     net: Cap number of elements for sendmmsg
+.\"
+.\"     To limit the amount of time we can spend in sendmmsg, cap the
+.\"     number of elements to UIO_MAXIOV (currently 1024).
+.\"
+.\"     For error handling an application using sendmmsg needs to retry at
+.\"     the first unsent message, so capping is simpler and requires less
+.\"     application logic than returning EINVAL.
+.SH SEE ALSO
+.BR recvmmsg (2),
+.BR sendmsg (2),
+.BR socket (2),
+.BR socket (7)
index 047b183..614fb1c 100644 (file)
@@ -33,7 +33,7 @@
 .\" Modified 2001-10-10 by aeb, following Michael Kerrisk.
 .\" 2011-09-07, mtk, Added syncfs() documentation,
 .\"
-.TH SYNC 2 2011-09-07 "Linux" "Linux Programmer's Manual"
+.TH SYNC 2 2012-02-12 "Linux" "Linux Programmer's Manual"
 .SH NAME
 sync, syncfs \- commit buffer cache to disk
 .SH SYNOPSIS
@@ -41,7 +41,7 @@ sync, syncfs \- commit buffer cache to disk
 .sp
 .B void sync(void);
 .sp
-.BI "void syncfs(int " fd );
+.BI "int syncfs(int " fd );
 .sp
 .in -4n
 Feature Test Macro Requirements for glibc (see
index dd11428..1368297 100644 (file)
@@ -26,7 +26,7 @@
 .\" Formatted or processed versions of this manual, if unaccompanied by
 .\" the source, must acknowledge the copyright and authors of this work.
 .\"
-.TH SYSCALLS 2 2011-09-07 "Linux" "Linux Programmer's Manual"
+.TH SYSCALLS 2 2012-03-05 "Linux" "Linux Programmer's Manual"
 .SH NAME
 syscalls \- Linux system calls
 .SH SYNOPSIS
@@ -165,7 +165,8 @@ l l l.
 \fBafs_syscall\fP(2)           Not implemented
 \fBalarm\fP(2)
 \fBalloc_hugepages\fP(2)       2.5.36  Removed in 2.5.44
-\fBbdflush\fP(2)
+\fBbdflush\fP(2)               Deprecated (does nothing)
+               since 2.6
 \fBbind\fP(2)
 \fBbreak\fP(2)         Not implemented
 \fBbrk\fP(2)
@@ -357,7 +358,7 @@ l l l.
 \fBmunmap\fP(2)
 \fBname_to_handle_at\fP(2)     2.6.39
 \fBnanosleep\fP(2)     2.0
-\fBnfsservctl\fP(2)    2.2
+\fBnfsservctl\fP(2)    2.2     Removed in 3.1
 \fBnice\fP(2)
 \fBoldfstat\fP(2)
 \fBoldlstat\fP(2)
@@ -528,11 +529,11 @@ l l l.
 \fBsync\fP(2)
 \fBsync_file_range\fP(2)       2.6.17
 \fBsync_file_range2\fP(2)      2.6.22  Architecture-specific variant
-\fBsyncfs\fP(2)        2.6.39
 .\" PowerPC, ARM, tile
 .\" First appeared on ARM, as arm_sync_file_range(), but later renamed
                of \fBsync_file_range\fP(2)
 .\" \fBsys_debug_setcontext\fP(2)      ???     PowerPC if CONFIG_PPC32
+\fBsyncfs\fP(2)        2.6.39
 \fBsysfs\fP(2) 1.2
 \fBsysinfo\fP(2)
 \fBsyslog\fP(2)
index 2209cfd..1201afb 100644 (file)
@@ -23,7 +23,7 @@
 .\" 1999-11-10: Merged text taken from the page contributed by
 .\" Reed H. Petty (rhp@draper.net)
 .\"
-.TH VFORK 2 2010-09-20 "Linux" "Linux Programmer's Manual"
+.TH VFORK 2 2012-02-08 "Linux" "Linux Programmer's Manual"
 .SH NAME
 vfork \- create a child process and block parent
 .SH SYNOPSIS
@@ -97,7 +97,7 @@ where a child is created which then immediately issues an
 .BR vfork ()
 differs from
 .BR fork (2)
-in that the parent is suspended until the child terminates
+in that the calling thread is suspended until the child terminates
 (either normally,
 by calling
 .BR _exit (2),
@@ -110,9 +110,19 @@ The child must not return from the current function or call
 .BR exit (3),
 but may call
 .BR _exit (2).
-.PP
-Signal handlers are inherited, but not shared.
-Signals to the parent
+
+As with
+.BR fork (2),
+the child process created by
+.BR vfork ()
+inherits copies of various of the caller's process attributes
+(e.g., file descriptors, signal dispositions, and current working directory);
+the
+.BR vfork ()
+call differs only in the treatment of the virtual address space,
+as described above.
+
+Signals sent to the parent
 arrive after the child releases the parent's memory
 (i.e., after the child terminates
 or calls
@@ -145,9 +155,10 @@ was tricky: for example, not modifying data
 in the parent process depended on knowing which variables were
 held in a register.
 .SH "CONFORMING TO"
-4.3BSD, POSIX.1-2001.
+4.3BSD; POSIX.1-2001 (but marked OBSOLETE).
 POSIX.1-2008 removes the specification of
 .BR vfork ().
+
 The requirements put on
 .BR vfork ()
 by the standards are weaker than those put on
@@ -159,6 +170,44 @@ remaining blocked until the child either terminates or calls
 and cannot rely on any specific behavior with respect to shared memory.
 .\" In AIXv3.1 vfork is equivalent to fork.
 .SH NOTES
+.PP
+Some consider the semantics of
+.BR vfork ()
+to be an architectural blemish, and the 4.2BSD man page stated:
+"This system call will be eliminated when proper system sharing mechanisms
+are implemented.
+Users should not depend on the memory sharing semantics of
+.BR vfork ()
+as it will, in that case, be made synonymous to
+.BR fork (2).\c
+"
+However, even though modern memory management hardware
+has decreased the performance difference between
+.BR fork ()
+and
+.BR vfork (2),
+there are various reasons why Linux and other systems have retained
+.BR vfork ():
+.IP * 3
+Some performance-critical applications require the small performance
+advantage conferred by
+.BR vfork ().
+.IP *
+.BR vfork (2)
+can be implemented on systems that lack a memory-management unit (MMU), but
+.BR fork (2)
+can't be implemented on such systems.
+(POSIX.1-2008 removed
+.BR vfork ()
+from the standard; the POSIX rationale for the
+.BR posix_spawn (3)
+function notes that that function,
+which provides functionality equivalent to
+.BR fork (2)+ exec (3),
+is designed to be implementable on systems that lack an MMU.)
+.\" http://stackoverflow.com/questions/4259629/what-is-the-difference-between-fork-and-vfork
+.\" http://developers.sun.com/solaris/articles/subprocess/subprocess.html
+.\" http://mailman.uclinux.org/pipermail/uclinux-dev/2009-April/000684.html
 .SS Linux Notes
 Fork handlers established using
 .BR pthread_atfork (3)
@@ -170,6 +219,17 @@ LinuxThreads threading library.
 (See
 .BR pthreads (7)
 for a description of Linux threading libraries.)
+
+A call to
+.BR vfork ()
+is equivalent to calling
+.BR clone (2)
+with
+.I flags
+specified as:
+
+     CLONE_VM | CLONE_VFORK | SIGCHLD
+
 .SS History
 The
 .BR vfork ()
@@ -187,16 +247,7 @@ Since 2.2.0-pre9 (on i386, somewhat later on
 other architectures) it is an independent system call.
 Support was added in glibc 2.0.112.
 .SH BUGS
-It is rather unfortunate that Linux revived this specter from the past.
-The BSD man page states:
-"This system call will be eliminated when proper system sharing mechanisms
-are implemented.
-Users should not depend on the memory sharing semantics of
-.BR vfork ()
-as it will, in that case, be made synonymous to
-.BR fork (2).\c
-"
-
+.PP
 Details of the signal handling are obscure and differ between systems.
 The BSD man page states:
 "To avoid a possible deadlock situation, processes that are children
index 6182d8f..93b1389 100644 (file)
@@ -22,7 +22,7 @@
 .\" License.
 .\" Modified Wed Jul 28 11:12:07 1993 by Rik Faith (faith@cs.unc.edu)
 .\" Modified Fri Sep  8 15:48:13 1995 by Andries Brouwer (aeb@cwi.nl)
-.TH GETS 3  2011-09-28 "GNU" "Linux Programmer's Manual"
+.TH GETS 3  2012-01-18 "GNU" "Linux Programmer's Manual"
 .SH NAME
 fgetc, fgets, getc, getchar, gets, ungetc \- input of characters and strings
 .SH SYNOPSIS
@@ -135,11 +135,18 @@ on success, or
 on error.
 .SH "CONFORMING TO"
 C89, C99, POSIX.1-2001.
+
 LSB deprecates
 .BR gets ().
 POSIX.1-2008 marks
 .BR gets ()
 obsolescent.
+ISO C11 removes the specification of
+.BR gets ()
+from the C language, and since version 2.16,
+glibc header files don't expose the function declaration if the
+.B _ISOC11_SOURCE
+feature test macro is defined.
 .SH BUGS
 Never use
 .BR gets ().
@@ -175,4 +182,5 @@ will be undefined and very probably not what you want.
 .BR puts (3),
 .BR scanf (3),
 .BR ungetwc (3),
-.BR unlocked_stdio (3)
+.BR unlocked_stdio (3),
+.BR feature_test_macros (7)
index 1361550..ffdc6ca 100644 (file)
@@ -21,7 +21,7 @@
 .\" Formatted or processed versions of this manual, if unaccompanied by
 .\" the source, must acknowledge the copyright and authors of this work.
 .\"
-.TH PTHREAD_SIGMASK 3 2009-01-25 "Linux" "Linux Programmer's Manual"
+.TH PTHREAD_SIGMASK 3 2011-10-16 "Linux" "Linux Programmer's Manual"
 .SH NAME
 pthread_sigmask \- examine and change mask of blocked signals
 .SH SYNOPSIS
@@ -110,8 +110,8 @@ main(int argc, char *argv[])
     sigset_t set;
     int s;
 
-    /* Block SIGINT; other threads created by main() will inherit
-       a copy of the signal mask. */
+    /* Block SIGQUIT and SIGUSR1; other threads created by main()
+       will inherit a copy of the signal mask. */
 
     sigemptyset(&set);
     sigaddset(&set, SIGQUIT);
index 04298ee..1811a95 100644 (file)
@@ -209,7 +209,7 @@ Currently,
 .\" kernel 2.6.27
 .\" The same sentence is in getdents.2
 only some file systems (among them: Btrfs, ext2, ext3, and ext4)
-have full support returning the file type in
+have full support for returning the file type in
 .IR d_type .
 All applications must properly handle a return of
 .BR DT_UNKNOWN .
index 59e9b58..a572a8c 100644 (file)
@@ -635,7 +635,7 @@ if (n == 1) {
 } else if (errno != 0) {
     perror("scanf");
 } else {
-    fprintf(stderr, "No matching characters\\n"):
+    fprintf(stderr, "No matching characters\\n");
 }
 .fi
 .in
index 9523593..850697b 100644 (file)
@@ -23,7 +23,7 @@
 .\" Formatted or processed versions of this manual, if unaccompanied by
 .\" the source, must acknowledge the copyright and authors of this work.
 .\"
-.TH SEM_WAIT 3 2010-02-25 "Linux" "Linux Programmer's Manual"
+.TH SEM_WAIT 3 2012-02-12 "Linux" "Linux Programmer's Manual"
 .SH NAME
 sem_wait, sem_timedwait, sem_trywait \- lock a semaphore
 .SH SYNOPSIS
@@ -175,7 +175,6 @@ The following shows what happens on two different runs of the program:
 .RB "$" " ./a.out 2 3"
 About to call sem_timedwait()
 sem_post() from handler
-sem_getvalue() from handler; value = 1
 sem_timedwait() succeeded
 .RB "$" " ./a.out 2 1"
 About to call sem_timedwait()
index 0ace5d8..e109003 100644 (file)
@@ -45,7 +45,7 @@ function is the wide-character equivalent of the
 .BR stpcpy (3)
 function.
 It copies the wide-character string pointed to by \fIsrc\fP,
-including the terminating null wide character (L\(aq\\0\(aq),cw
+including the terminating null wide character (L\(aq\\0\(aq),
 to the array pointed to by
 \fIdest\fP.
 .PP
index 4a80705..0727fbc 100644 (file)
@@ -36,7 +36,7 @@ that is, the number of bytes
 written at \fIs\fP.
 .PP
 A different case is when \fIs\fP is not NULL,
- but \fIwc\fP is a null wide character (L\(aq\\0\(aq).
+but \fIwc\fP is a null wide character (L\(aq\\0\(aq).
 In this
 case the
 .BR wcrtomb ()
index 8d34867..f1e5fd2 100644 (file)
@@ -28,7 +28,7 @@ of the
 .BR strlen (3)
 function.
 It determines the length of the wide-character string pointed to
-by \fIs\fP, excluding the terminating null wide chharacter (L\(aq\\0\(aq).
+by \fIs\fP, excluding the terminating null wide character (L\(aq\\0\(aq).
 .SH "RETURN VALUE"
 The
 .BR wcslen ()
index 5d254ba..2190ea3 100644 (file)
@@ -10,7 +10,7 @@
 .\"   Dinkumware C library reference http://www.dinkumware.com/
 .\"   OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html
 .\"
-.TH WCSNRTOMBS 3  2011-10-01 "GNU" "Linux Programmer's Manual"
+.TH WCSNRTOMBS 3  2011-10-16 "GNU" "Linux Programmer's Manual"
 .SH NAME
 wcsnrtombs \- convert a wide-character string to a multibyte string
 .SH SYNOPSIS
@@ -86,7 +86,8 @@ to \fIdest\fP is returned.
 terminating null wide character (which has the side effect of bringing back \fI*ps\fP
 to the initial state).
 In this case \fI*src\fP is set to NULL, and the number
-of bytes written to \fIdest\fP, excluding the terminating null, is
+of bytes written to \fIdest\fP,
+excluding the terminating null byte (\(aq\\0\(aq), is
 returned.
 .PP
 If \fIdest\fP is NULL, \fIlen\fP is ignored,
@@ -106,7 +107,7 @@ The
 function returns
 the number of bytes that make up the
 converted part of multibyte sequence,
-not including the terminating null.
+not including the terminating null byte.
 If a wide character was encountered which
 could not be converted,
 .I (size_t)\ \-1
index cbc6a93..b7ab824 100644 (file)
@@ -11,7 +11,7 @@
 .\"   OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html
 .\"   ISO/IEC 9899:1999
 .\"
-.TH WCSRTOMBS 3  2011-09-28 "GNU" "Linux Programmer's Manual"
+.TH WCSRTOMBS 3  2011-10-16 "GNU" "Linux Programmer's Manual"
 .SH NAME
 wcsrtombs \- convert a wide-character string to a multibyte string
 .SH SYNOPSIS
@@ -61,7 +61,9 @@ terminating null wide character (L\(aq\\0\(aq),
 which has the side effect of bringing back \fI*ps\fP
 to the initial state.
 In this case \fI*src\fP is set to NULL, and the number
-of bytes written to \fIdest\fP, excluding the terminating null, is returned.
+of bytes written to \fIdest\fP,
+excluding the terminating null byte (\(aq\\0\(aq),
+is returned.
 .PP
 If \fIdest\fP is NULL, \fIlen\fP is ignored,
 and the conversion proceeds as above, except that the converted bytes
index 7e89e2f..abfc456 100644 (file)
@@ -11,7 +11,7 @@
 .\"   OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html
 .\"   ISO/IEC 9899:1999
 .\"
-.TH WCSTOMBS 3  2011-09-28 "GNU" "Linux Programmer's Manual"
+.TH WCSTOMBS 3  2011-10-16 "GNU" "Linux Programmer's Manual"
 .SH NAME
 wcstombs \- convert a wide-character string to a multibyte string
 .SH SYNOPSIS
@@ -45,7 +45,7 @@ In this case the number of bytes written to
 terminating null wide character (L\(aq\\0\(aq).
 In this case the conversion ends in the initial state.
 The number of bytes written to \fIdest\fP,
-excluding the terminating null, is returned.
+excluding the terminating null byte (\(aq\\0\(aq), is returned.
 .PP
 The programmer must ensure that there is room for at least \fIn\fP bytes
 at \fIdest\fP.
index a64b820..97a18be 100644 (file)
@@ -20,7 +20,7 @@
 .\" Formatted or processed versions of this manual, if unaccompanied by
 .\" the source, must acknowledge the copyright and authors of this work.
 .\"
-.TH CORE 5 2010-11-15 "Linux" "Linux Programmer's Manual"
+.TH CORE 5 2012-01-17 "Linux" "Linux Programmer's Manual"
 .SH NAME
 core \- core dump file
 .SH DESCRIPTION
@@ -134,6 +134,10 @@ hostname (same as \fInodename\fP returned by \fBuname\fP(2))
 %e
 executable filename (without path prefix)
 .TP
+%E
+pathname of executable,
+with slashes (\(aq/\(aq) replaced by exclamation marks (\(aq!\(aq).
+.TP
 %c
 core file size soft resource limit of crashing process (since Linux 2.6.24)
 .PD
index c2da956..9c23fc1 100644 (file)
@@ -26,7 +26,7 @@
 .\" Modified Sun Jun 18 01:53:57 1995 by Andries Brouwer (aeb@cwi.nl)
 .\" Modified Mon Jan  5 20:24:40 MET 1998 by Michael Haardt
 .\"  (michael@cantor.informatik.rwth-aachen.de)
-.TH PASSWD 5 2010-10-21 "Linux" "Linux Programmer's Manual"
+.TH PASSWD 5 2012-02-14 "Linux" "Linux Programmer's Manual"
 .SH NAME
 passwd \- password file
 .SH DESCRIPTION
@@ -45,18 +45,18 @@ hardware was too slow to crack a well-chosen password, and moreover the
 basic assumption used to be that of a friendly user-community.
 These days many people run some version of the shadow password suite, where
 .I /etc/passwd
-has asterisks (*) instead of encrypted passwords,
+has an \(aqx\(aq character in the password field,
 and the encrypted passwords are in
 .IR /etc/shadow ,
 which is readable by the superuser only.
 .PP
 Regardless of whether shadow passwords are used, many system administrators
-use an asterisk in the encrypted password field to make sure
+use an asterisk (*) in the encrypted password field to make sure
 that this user can not authenticate him- or herself using a
 password.
 (But see NOTES below.)
 .PP
-If you create a new login, first put an asterisk in the password field,
+If you create a new login, first put an asterisk (*) in the password field,
 then use
 .BR passwd (1)
 to set it.
@@ -115,7 +115,7 @@ If you want to create user groups, there must be an entry in
 .IR /etc/group ,
 or no group will exist.
 .PP
-If the encrypted password is set to an asterisk, the user will be unable
+If the encrypted password is set to an asterisk (*), the user will be unable
 to login using
 .BR login (1),
 but may still login using
index 24897c9..54ccdd8 100644 (file)
@@ -58,7 +58,7 @@
 .\" to see what information could be imported from that file
 .\" into this file.
 .\"
-.TH PROC 5 2011-10-04 "Linux" "Linux Programmer's Manual"
+.TH PROC 5 2012-02-08 "Linux" "Linux Programmer's Manual"
 .SH NAME
 proc \- process information pseudo-file system
 .SH DESCRIPTION
@@ -477,6 +477,7 @@ information via this field.
 This file is only readable by the owner of the process.
 .TP
 .IR /proc/[pid]/ns/ " (since Linux 3.0)"
+.\" See commit 6b4e306aa3dc94a0545eb9279475b1ab6209a31f
 This is a subdirectory containing one entry for each namespace that
 supports being manipulated by
 .BR setns (2).
@@ -1350,9 +1351,8 @@ They are the same as the load average numbers given by
 .BR uptime (1)
 and other programs.
 The fourth field consists of two numbers separated by a slash (/).
-The first of these is the number of currently executing kernel
-scheduling entities (processes, threads);
-this will be less than or equal to the number of CPUs.
+The first of these is the number of currently runnable kernel
+scheduling entities (processes, threads).
 The value after the slash is the number of kernel scheduling entities
 that currently exist on the system.
 The fifth field is the PID of the process that was most
index 5232835..69a9786 100644 (file)
@@ -18,7 +18,7 @@
 .\"
 .\" Added ndots remark by Bernhard R. Link - debian bug #182886
 .\"
-.TH RESOLV.CONF 5 2009-03-01 "" "Linux Programmer's Manual"
+.TH RESOLV.CONF 5 2012-02-08 "" "Linux Programmer's Manual"
 .UC 4
 .SH NAME
 resolv.conf \- resolver configuration file
@@ -251,6 +251,9 @@ as explained above under \fBoptions\fP.
 The keyword and value must appear on a single line, and the keyword
 (e.g., \fBnameserver\fP) must start the line.
 The value follows the keyword, separated by white space.
+
+Lines that contain a semicolon (;) or hash character (#)
+in the first column are treated as comments.
 .SH FILES
 .IR /etc/resolv.conf ,
 .I <resolv.h>
index f2de3a3..4d4154a 100644 (file)
@@ -42,9 +42,8 @@
 .\"     capability, then we must also set the effective flag for all
 .\"     other capabilities where the permitted or inheritable bit is set.
 .\" 2011-09-07, mtk/Serge hallyn: Add CAP_SYSLOG
-.\" FIXME: Linux 3.0 added CAP_WAKE_ALARM
 .\"
-.TH CAPABILITIES 7 2011-10-04 "Linux" "Linux Programmer's Manual"
+.TH CAPABILITIES 7 2012-03-05 "Linux" "Linux Programmer's Manual"
 .SH NAME
 capabilities \- overview of Linux capabilities
 .SH DESCRIPTION
@@ -127,6 +126,8 @@ set the set-group-ID bit for a file whose GID does not match
 the file system or any of the supplementary GIDs of the calling process.
 .TP
 .B CAP_IPC_LOCK
+.\" FIXME As at Linux 3.2, there are some strange uses of this capability
+.\" in other places; they probably should be replaced with something else.
 Lock memory
 .RB ( mlock (2),
 .BR mlockall (2),
@@ -175,10 +176,38 @@ Create special files using
 .BR mknod (2).
 .TP
 .B CAP_NET_ADMIN
-Perform various network-related operations
-(e.g., setting privileged socket options,
-enabling multicasting, interface configuration,
-modifying routing tables).
+Perform various network-related operations:
+.PD 0
+.RS
+.IP * 2
+interface configuration;
+.IP *
+administration of IP firewall, masquerading, and accounting
+.IP *
+modify routing tables;
+.IP *
+bind to any address for transparent proxying;
+.IP *
+set type-of-service (TOS)
+.IP *
+clear driver statistics;
+.IP *
+set promiscuous mode;
+.IP *
+enabling multicasting;
+.IP *
+use
+.BR setsockopt (2)
+to set the following socket options:
+.BR SO_DEBUG ,
+.BR SO_MARK ,
+.BR SO_PRIORITY
+(for a priority outside the range 0 to 6),
+.BR SO_RCVBUFFORCE ,
+and
+.BR SO_SNDBUFFORCE .
+.RE
+.PD
 .TP
 .B CAP_NET_BIND_SERVICE
 Bind a socket to Internet domain privileged ports
@@ -188,7 +217,14 @@ Bind a socket to Internet domain privileged ports
 (Unused)  Make socket broadcasts, and listen to multicasts.
 .TP
 .B CAP_NET_RAW
-Use RAW and PACKET sockets.
+.PD 0
+.RS
+.IP * 2
+use RAW and PACKET sockets;
+.IP *
+bind to any address for transparent proxying.
+.RE
+.PD
 .\" Also various IP options and setsockopt(SO_BINDTODEVICE)
 .TP
 .B CAP_SETGID
@@ -249,6 +285,11 @@ operations (since Linux 2.6.37,
 should be used to permit such operations);
 .IP *
 perform
+.B VM86_REQUEST_IRQ
+.BR vm86 (2)
+command;
+.IP *
+perform
 .B IPC_SET
 and
 .B IPC_RMID
@@ -284,15 +325,25 @@ in system calls that open files (e.g.,
 .BR pipe (2));
 .IP *
 employ
-.B CLONE_NEWNS
-flag with
+.B CLONE_*
+flags that create new namespaces with
 .BR clone (2)
 and
 .BR unshare (2);
 .IP *
 call
+.BR perf_event_open (2);
+.IP *
+call
+.IP *
+access privileged
+.I perf
+event information;
 .BR setns (2);
 .IP *
+call
+.BR fanotify_init (2);
+.IP *
 perform
 .B KEYCTL_CHOWN
 and
@@ -303,7 +354,31 @@ operations;
 perform
 .BR madvise (2)
 .B MADV_HWPOISON
-operation.
+operation;
+.IP *
+employ the
+.B TIOCSTI
+.BR ioctl (2)
+to insert characters into the input queue of a terminal other than
+the caller's controlling terminal.
+.IP *
+employ the obsolete
+.BR nfsservctl (2);
+system call;
+.IP *
+employ the obsolete
+.BR bdflush (2)
+system call;
+.IP *
+perform various privileged block-device
+.BR ioctl (2)
+operations;
+.IP *
+perform various privileged file-system
+.BR ioctl (2)
+operations;
+.IP *
+perform administrative operations on many device drivers.
 .RE
 .PD
 .TP
@@ -385,7 +460,11 @@ Perform I/O port operations
 and
 .BR ioperm (2));
 access
-.IR /proc/kcore .
+.IR /proc/kcore ;
+employ the
+.B FIBMAP
+.BR ioctl (2)
+operation.
 .TP
 .B CAP_SYS_RESOURCE
 .PD 0
@@ -406,6 +485,12 @@ override
 .B RLIMIT_NPROC
 resource limit;
 .IP *
+override maximum number of consoles on console allocation;
+.IP *
+override maximum number of keymaps;
+.IP *
+allow more than 64hz interrupts from the real-time clock;
+.IP *
 raise
 .I msg_qbytes
 limit for a System V message queue above the limit in
@@ -413,12 +498,24 @@ limit for a System V message queue above the limit in
 (see
 .BR msgop (2)
 and
-.BR msgctl (2)).
+.BR msgctl (2));
+.IP *
+override the
+.I /proc/sys/fs/pipe-size-max
+limit when setting the capacity of a pipe using the
+.B F_SETPIPE_SZ
+.BR fcntl (2)
+command.
 .IP *
 use
 .BR F_SETPIPE_SZ
 to increase the capacity of a pipe above the limit specified by
-.IR /proc/sys/fs/pipe-max-size .
+.IR /proc/sys/fs/pipe-max-size ;
+.IP *
+override
+.I /proc/sys/fs/mqueue/queues_max
+limit when creating POSIX message queues (see
+.BR mq_overview (7)).
 .RE
 .PD
 .TP
@@ -431,7 +528,10 @@ set real-time (hardware) clock.
 .TP
 .B CAP_SYS_TTY_CONFIG
 Use
-.BR vhangup (2).
+.BR vhangup (2);
+employ various privileged
+.BR ioctl (2)
+operations on virtual terminals.
 .TP
 .BR CAP_SYSLOG " (since Linux 2.6.37)"
 Perform privileged
@@ -440,6 +540,13 @@ operations.
 See
 .BR syslog (2)
 for information on which operations require privilege.
+.TP
+.BR CAP_WAKE_ALARM " (since Linux 3.0)"
+Trigger something that will wake up the system (set
+.B CLOCK_REALTIME_ALARM
+and
+.B CLOCK_BOOTTIME_ALARM
+timers).
 .\"
 .SS Past and Current Implementation
 A full implementation of capabilities requires that:
@@ -952,10 +1059,12 @@ created on the system.
 .BR cap_init (3),
 .BR capgetp (3),
 .BR capsetp (3),
+.BR libcap (3),
 .BR credentials (7),
 .BR pthreads (7),
 .BR getcap (8),
 .BR setcap (8)
 .PP
+Comments on the purposes of various capabilities in
 .I include/linux/capability.h
 in the kernel source
index 91ac5f1..c2bd747 100644 (file)
@@ -22,7 +22,7 @@
 .\" Formatted or processed versions of this manual, if unaccompanied by
 .\" the source, must acknowledge the copyright and authors of this work.
 .\"
-.TH FEATURE_TEST_MACROS 7 2011-09-17 "Linux" "Linux Programmer's Manual"
+.TH FEATURE_TEST_MACROS 7 2012-01-18 "Linux" "Linux Programmer's Manual"
 .SH NAME
 feature_test_macros \- feature test macros
 .SH SYNOPSIS
@@ -215,6 +215,10 @@ earlier glibc 2.1.x versions recognized an equivalent macro named
 Although the use of the latter macro is obsolete, glibc continues
 to recognize it for backward compatibility.
 .TP
+.B _ISOC11_SOURCE
+Exposes declarations consistent with the ISO C11 standard.
+This macro is recognized since glibc 2.16.
+.TP
 .B _LARGEFILE64_SOURCE
 Expose definitions for the alternative API specified by the
 LFS (Large File Summit) as a "transitional extension" to the
index ddeb5e5..6936293 100644 (file)
@@ -23,7 +23,7 @@
 .\" Formatted or processed versions of this manual, if unaccompanied by
 .\" the source, must acknowledge the copyright and authors of this work.
 .\"
-.TH INOTIFY 7 2010-11-12 "Linux" "Linux Programmer's Manual"
+.TH INOTIFY 7 2011-12-07 "Linux" "Linux Programmer's Manual"
 .SH NAME
 inotify \- monitoring file system events
 .SH DESCRIPTION
@@ -126,6 +126,9 @@ allows the resulting pair of
 and
 .B IN_MOVE_TO
 events to be connected by the application.
+For all other event types,
+.I cookie
+is set to 0.
 
 The
 .I name
index fd544eb..f928de3 100644 (file)
@@ -29,7 +29,7 @@
 .\" Modified Tue Jul 27 20:12:02 2004 by Colin Watson <cjwatson@debian.org>
 .\" 2007-05-30, mtk: various rewrites and moved much text to new man-pages.7.
 .\"
-.TH MAN 7 2007-05-30 "Linux" "Linux Programmer's Manual"
+.TH MAN 7 2011-10-05 "Linux" "Linux Programmer's Manual"
 .SH NAME
 man \- macros to format man pages
 .SH SYNOPSIS
@@ -102,22 +102,26 @@ followed by the heading name.
 .\" then place the heading in double quotes.
 
 The only mandatory heading is NAME, which should be the first section and
-be followed on the next line by a one line description of the program:
+be followed on the next line by a one-line description of the program:
 .RS
 .sp
 \&.SH NAME
 .br
+item \\- description
 .sp
 .RE
 It is extremely important that this format is followed, and that there is a
-backslash before the single dash which follows the command name.
+backslash before the single dash which follows the item name.
 This syntax is used by the
-.BR makewhatis (8)
-program to create a database of short command descriptions for the
+.BR mandb (8)
+program to create a database of short descriptions for the
 .BR whatis (1)
 and
 .BR apropos (1)
 commands.
+(See
+.BR lexgrog (1)
+for further details on the syntax of the NAME section.)
 .PP
 For a list of other sections that might appear in a manual page, see
 .BR man-pages (7).
@@ -551,6 +555,7 @@ is not implemented.
 .SH "SEE ALSO"
 .BR apropos (1),
 .BR groff (1),
+.BR lexgrog (1),
 .BR man (1),
 .BR man2html (1),
 .BR whatis (1),
index d6a027d..05ad461 100644 (file)
@@ -429,10 +429,10 @@ Special defines (such as the standards macro).
 .Xr man 7 ,
 .Xr man-pages 7
 .Sh COLOPHON
-This page is part of release 3.35 of the Linux
+This page is part of release 3.37 of the Linux
 .Em man-pages
 project.
 A description of the project,
 and information about reporting bugs,
 can be found at
-http://man7.org/linux/man-pages/.
+http://www.kernel.org/doc/man-pages/.
index a424c47..276c4b8 100644 (file)
@@ -2944,10 +2944,10 @@ and certainly should be able to.
 .Xr groff_mdoc 7 ,
 .Xr mdoc 7
 .Sh COLOPHON
-This page is part of release 3.35 of the Linux
+This page is part of release 3.37 of the Linux
 .Em man-pages
 project.
 A description of the project,
 and information about reporting bugs,
 can be found at
-http://man7.org/linux/man-pages/.
+http://www.kernel.org/doc/man-pages/.
index 84278d0..5c02204 100644 (file)
@@ -1,5 +1,5 @@
 .\" This is in the public domain
-.TH LD.SO 8 2009-01-12 "GNU" "Linux Programmer's Manual"
+.TH LD.SO 8 2012-03-06 "GNU" "Linux Programmer's Manual"
 .SH NAME
 ld.so, ld-linux.so* \- dynamic linker/loader
 .SH SYNOPSIS
@@ -117,7 +117,7 @@ Verify that program is dynamically linked and this dynamic linker can handle
 it.
 .TP
 .B \-\-library\-path PATH
-Override
+Use PATH instead of
 .B LD_LIBRARY_PATH
 environment variable setting (see below).
 .TP
@@ -126,6 +126,8 @@ Ignore RPATH and RUNPATH information in object names in LIST.
 This option is ignored if
 .B ld.so
 is set-user-ID or set-group-ID.
+.B \-\-audit LIST
+Use objects named in LIST as auditors.
 .SH ENVIRONMENT
 There are four important environment variables.
 .TP
index 81f5b19..8607c18 100644 (file)
-○:LDP man-pages:3.35:2007/11/15:intro:1:2008/02/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2000/10/30:ldd:1:2002/02/14::ysato@h4.dion.ne.jp:Yuichi SATO:
-○:LDP man-pages:3.35:2008/11/14:time:1:2008/11/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:_Exit:2:_exit:2:
-@:LDP man-pages:3.35:2011/09/08:__clone2:2:clone:2:
-○:LDP man-pages:3.35:2010/09/20:_exit:2:2001/12/14::ysato@h4.dion.ne.jp:Yuichi SATO:
-@:LDP man-pages:3.35:1995/06/10:_llseek:2:llseek:2:
-@:LDP man-pages:3.35:2010/08/31:_newselect:2:select:2:
-○:LDP man-pages:3.35:2007/12/19:_syscall:2:2008/02/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2008/11/20:_sysctl:2:sysctl:2:
-○:LDP man-pages:3.35:2010/09/10:accept:2:2008/12/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/10:accept4:2:accept:2:
-☆:LDP man-pages:3.29=>3.35:2010/10/24:access:2:2007/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2008/06/16:acct:2:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
-×:LDP man-pages:3.35:2010/02/25:add_key:2:::::
-○:LDP man-pages:3.35:2004/05/27:adjtimex:2:2006/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2007/07/05:afs_syscall:2:unimplemented:2:
-○:LDP man-pages:3.35:2008/06/12:alarm:2:1997/02/22::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-○:LDP man-pages:3.35:2007/05/31:alloc_hugepages:2:2007/06/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2007/12/26:arch_prctl:2:2005/11/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/10/09:arm_fadvise:2:posix_fadvise:2:
-@:LDP man-pages:3.35:2010/10/09:arm_fadvise64_64:2:posix_fadvise:2:
-@:LDP man-pages:3.35:2010/10/09:arm_sync_file_range:2:sync_file_range:2:
-○:LDP man-pages:3.35:2004/06/17:bdflush:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.35:2007/12/28:bind:2:2007/06/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2007/07/05:break:2:unimplemented:2:
-○:LDP man-pages:3.35:2010/09/20:brk:2:2007/02/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2007/05/26:cacheflush:2:2005/10/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2010/09/20:capget:2:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:capset:2:capget:2:
-☆:LDP man-pages:3.31=>3.35:2010/11/25:chdir:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.35:2010/09/26:chmod:2:2005/01/14::ysato444@yahoo.co.jp:Yuichi SATO:
-☆:LDP man-pages:3.31=>3.35:2010/11/22:chown:2:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.35:2010/11/22:chown32:2:chown:2:
-○:LDP man-pages:3.35:2010/09/20:chroot:2:2005/01/14::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.35:2010/02/03:clock_getres:2:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.35:2010/02/03:clock_gettime:2:clock_getres:2:
-○:LDP man-pages:3.35:2010/12/03:clock_nanosleep:2:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/02/03:clock_settime:2:clock_getres:2:
-☆:LDP man-pages:3.32=>3.35:2011/09/08:clone:2:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2011/09/08:clone2:2:clone:2:
-○:LDP man-pages:3.35:2007/12/28:close:2:2007/10/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2008/12/03:connect:2:2005/10/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2011/09/08:creat:2:open:2:
-○:LDP man-pages:3.35:2007/06/03:create_module:2:2006/07/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:0000/00/00:delete_module:2:2006/07/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2010/09/10:dup:2:2005/09/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/10:dup2:2:dup:2:
-@:LDP man-pages:3.35:2010/09/10:dup3:2:dup:2:
-☆:LDP man-pages:3.31=>3.35:2010/12/03:epoll_create:2:2009/03/14::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.35:2010/12/03:epoll_create1:2:epoll_create:2:
-☆:LDP man-pages:3.31=>3.35:2010/12/03:epoll_ctl:2:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/12/03:epoll_pwait:2:epoll_wait:2:
-☆:LDP man-pages:3.31=>3.35:2010/12/03:epoll_wait:2:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-☆:LDP man-pages:3.25=>3.35:2010/08/30:eventfd:2:2008/11/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/08/30:eventfd2:2:eventfd:2:
-☆:LDP man-pages:3.32=>3.35:2011/09/14:execve:2:2008/04/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:exit:2:_exit:2:
-○:LDP man-pages:3.35:2008/11/27:exit_group:2:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
-☆:LDP man-pages:3.29=>3.35:2010/10/24:faccessat:2:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/10/09:fadvise64:2:posix_fadvise:2:
-@:LDP man-pages:3.35:2010/10/09:fadvise64_64:2:posix_fadvise:2:
-☆:LDP man-pages:3.32=>3.35:2011/09/19:fallocate:2:2007/10/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/11/25:fchdir:2:chdir:2:
-@:LDP man-pages:3.35:2010/09/26:fchmod:2:chmod:2:
-○:LDP man-pages:3.35:2009/12/13:fchmodat:2:2006/12/28::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.35:2010/11/22:fchown:2:chown:2:
-@:LDP man-pages:3.35:2010/11/22:fchown32:2:fchown:2:
-○:LDP man-pages:3.35:2009/12/13:fchownat:2:2006/12/28::ysato444@yahoo.co.jp:Yuichi SATO:
-☆:LDP man-pages:3.24=>3.35:2011/09/15:fcntl:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2011/09/15:fcntl64:2:fcntl:2:
-@:LDP man-pages:3.35:2008/11/07:fdatasync:2:fsync:2:
-@:LDP man-pages:3.35:2001/12/01:fgetxattr:2:getxattr:2:
-@:LDP man-pages:3.35:2001/12/01:flistxattr:2:listxattr:2:
-○:LDP man-pages:3.35:2009/07/25:flock:2:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2009/04/27:fork:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2007/05/31:free_hugepages:2:alloc_hugepages:2:
-@:LDP man-pages:3.35:2001/12/01:fremovexattr:2:removexattr:2:
-@:LDP man-pages:3.35:2001/12/31:fsetxattr:2:setxattr:2:
-@:LDP man-pages:3.35:2011/10/04:fstat:2:stat:2:
-@:LDP man-pages:3.35:2010/12/03:fstat64:2:fstat:2:
-☆:LDP man-pages:3.31=>3.35:2011/09/19:fstatat:2:2006/12/28::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.35:2011/09/19:fstatat64:2:fstatat:2:
-@:LDP man-pages:3.35:2010/11/21:fstatfs:2:statfs:2:
-@:LDP man-pages:3.35:2010/11/21:fstatfs64:2:fstatfs:2:
-@:LDP man-pages:3.35:2003/08/22:fstatvfs:2:statvfs:3:
-○:LDP man-pages:3.35:2008/11/07:fsync:2:2007/10/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2011/09/08:ftruncate:2:truncate:2:
-@:LDP man-pages:3.35:2011/09/08:ftruncate64:2:ftruncate:2:
-○:LDP man-pages:3.35:2010/08/29:futex:2:2007/02/08::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.35:2009/12/13:futimesat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.35:0000/00/00:get_kernel_syms:2:2006/07/31::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2008/08/15:get_mempolicy:2:2008/11/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2008/11/27:get_thread_area:2:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2009/03/15:getcontext:2:2001/12/15::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-×:LDP man-pages:3.35:2008/06/03:getcpu:2:::::
-@:LDP man-pages:3.35:2010/09/20:getcwd:2:getcwd:3:
-☆:LDP man-pages:3.31=>3.35:2010/11/21:getdents:2:2009/03/05::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.35:2010/11/21:getdents64:2:getdents:2:
-○:LDP man-pages:3.35:2009/09/27:getdomainname:2:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2010/09/20:getdtablesize:2:2007/01/14::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.35:2010/11/22:getegid:2:getgid:2:
-@:LDP man-pages:3.35:2010/11/22:getegid32:2:getegid:2:
-@:LDP man-pages:3.35:2010/11/22:geteuid:2:getuid:2:
-@:LDP man-pages:3.35:2010/11/22:geteuid32:2:geteuid:2:
-☆:LDP man-pages:3.31=>3.35:2010/11/22:getgid:2:1997/06/26::suto@av.crl.sony.co.jp:SUTO, Mitsuaki:
-@:LDP man-pages:3.35:2010/11/22:getgid32:2:getgid:2:
-☆:LDP man-pages:3.31=>3.35:2010/11/22:getgroups:2:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/11/22:getgroups32:2:getgroups:2:
-@:LDP man-pages:3.35:2010/09/20:gethostid:2:gethostid:3:
-○:LDP man-pages:3.35:2010/09/26:gethostname:2:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2009/03/15:getitimer:2:2007/10/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-☆:LDP man-pages:3.31=>3.35:2010/11/16:getpagesize:2:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2008/12/03:getpeername:2:2005/02/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/26:getpgid:2:setpgid:2:
-@:LDP man-pages:3.35:2010/09/26:getpgrp:2:setpgid:2:
-○:LDP man-pages:3.35:2008/09/23:getpid:2:1997/06/27::suto@av.crl.sony.co.jp:SUTO, Mitsuaki:
-@:LDP man-pages:3.35:2007/07/05:getpmsg:2:unimplemented:2:
-@:LDP man-pages:3.35:2008/09/23:getppid:2:getpid:2:
-○:LDP man-pages:3.35:2008/05/29:getpriority:2:2005/10/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/11/22:getresgid:2:getresuid:2:
-@:LDP man-pages:3.35:2010/11/22:getresgid32:2:getresgid:2:
-☆:LDP man-pages:3.31=>3.35:2010/11/22:getresuid:2:2003/11/13::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.35:2010/11/22:getresuid32:2:getresuid:2:
-☆:LDP man-pages:3.30=>3.35:2011/09/10:getrlimit:2:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-☆:LDP man-pages:3.24=>3.35:2010/09/26:getrusage:2:2008/11/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2010/09/26:getsid:2:2002/02/03::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.35:2008/12/03:getsockname:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.35:2008/12/03:getsockopt:2:2008/07/24::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.35:2008/04/14:gettid:2:2003/09/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2009/03/25:gettimeofday:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-☆:LDP man-pages:3.31=>3.35:2010/11/22:getuid:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.35:2010/11/22:getuid32:2:getuid:2:
-○:LDP man-pages:3.35:2001/12/01:getxattr:2:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2007/07/05:gtty:2:unimplemented:2:
-○:LDP man-pages:3.35:1994/08/21:idle:2:2000/01/14::argrath@yo.rim.or.jp:Kentaro Shirakata:
-@:LDP man-pages:3.35:1995/11/29:inb:2:outb:2:
-@:LDP man-pages:3.35:1995/11/29:inb_p:2:outb:2:
-○:LDP man-pages:3.35:0000/00/00:init_module:2:2006/07/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:1995/11/29:inl:2:outb:2:
-@:LDP man-pages:3.35:1995/11/29:inl_p:2:outb:2:
-☆:LDP man-pages:3.29=>3.35:2010/10/20:inotify_add_watch:2:2006/08/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2008/10/10:inotify_init:2:2006/08/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2008/10/10:inotify_init1:2:inotify_init:2:
-○:LDP man-pages:3.35:2010/10/15:inotify_rm_watch:2:2006/08/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:1995/11/29:insb:2:outb:2:
-@:LDP man-pages:3.35:1995/11/29:insl:2:outb:2:
-@:LDP man-pages:3.35:1995/11/29:insw:2:outb:2:
-○:LDP man-pages:3.35:2010/11/11:intro:2:2006/04/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:1995/11/29:inw:2:outb:2:
-@:LDP man-pages:3.35:1995/11/29:inw_p:2:outb:2:
-○:LDP man-pages:3.35:2008/06/18:io_cancel:2:2003/03/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2008/06/18:io_destroy:2:2003/03/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2008/07/04:io_getevents:2:2003/03/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2008/06/18:io_setup:2:2003/03/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2008/06/18:io_submit:2:2003/03/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2000/09/21:ioctl:2:2011/09/15::tati@kc5.so-net.ne.jp:TACHIBANA Akira:
-○:LDP man-pages:3.35:2007/12/29:ioctl_list:2:2004/06/13::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.35:2007/06/15:ioperm:2:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2004/12/26:iopl:2:2005/02/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2008/07/09:ioprio_get:2:ioprio_set:2:
-○:LDP man-pages:3.35:2008/07/09:ioprio_set:2:2007/01/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2007/06/28:ipc:2:1997/02/23::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-×:LDP man-pages:3.35:2010/11/04:kexec_load:2:::::
-×:LDP man-pages:3.35:2010/02/25:keyctl:2:::::
-○:LDP man-pages:3.35:2009/09/15:kill:2:2005/12/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2010/09/20:killpg:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.35:2010/11/22:lchown:2:chown:2:
-@:LDP man-pages:3.35:2010/11/22:lchown32:2:lchown:2:
-@:LDP man-pages:3.35:2001/12/01:lgetxattr:2:getxattr:2:
-○:LDP man-pages:3.35:2008/08/21:link:2:2005/05/12::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.35:2009/12/13:linkat:2:2007/01/21::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2008/11/20:listen:2:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.35:2001/12/01:listxattr:2:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2001/12/01:llistxattr:2:listxattr:2:
-○:LDP man-pages:3.35:1995/06/10:llseek:2:2005/01/14::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.35:2007/07/05:lock:2:unimplemented:2:
-○:LDP man-pages:3.35:2004/06/17:lookup_dcookie:2:2005/02/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2001/12/01:lremovexattr:2:removexattr:2:
-☆:LDP man-pages:3.32=>3.35:2011/09/25:lseek:2:2006/03/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2001/12/31:lsetxattr:2:setxattr:2:
-@:LDP man-pages:3.35:2011/10/04:lstat:2:stat:2:
-@:LDP man-pages:3.35:2010/12/03:lstat64:2:lstat:2:
-☆:LDP man-pages:3.24=>3.35:2011/09/18:madvise:2:2007/01/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2007/07/05:madvise1:2:unimplemented:2:
-○:LDP man-pages:3.35:2008/08/15:mbind:2:2008/11/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-×:LDP man-pages:3.35:2010/11/01:migrate_pages:2:::::
-○:LDP man-pages:3.35:2008/04/22:mincore:2:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-☆:LDP man-pages:3.25=>3.35:2010/06/26:mkdir:2:2008/10/08::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.35:2009/12/13:mkdirat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.35:2010/09/20:mknod:2:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2010/09/20:mknodat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO:
-☆:LDP man-pages:3.24=>3.35:2011/09/14:mlock:2:2006/02/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2011/09/14:mlockall:2:mlock:2:
-☆:LDP man-pages:3.24=>3.35:2010/06/20:mmap:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2008/04/22:mmap2:2:2007/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2007/06/01:modify_ldt:2:2007/06/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2010/09/10:mount:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2010/06/11:move_pages:2:2008/11/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2011/09/08:mprotect:2:2007/06/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2007/07/05:mpx:2:unimplemented:2:
-○:LDP man-pages:3.35:2010/08/29:mq_getsetattr:2:2006/07/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/10/04:mq_notify:2:mq_notify:3:
-@:LDP man-pages:3.35:2009/02/20:mq_open:2:mq_open:3:
-@:LDP man-pages:3.35:2010/09/20:mq_timedreceive:2:mq_receive:3:
-@:LDP man-pages:3.35:2010/09/20:mq_timedsend:2:mq_send:3:
-@:LDP man-pages:3.35:2010/08/29:mq_unlink:2:mq_unlink:3:
-○:LDP man-pages:3.35:2010/06/10:mremap:2:2006/04/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2008/08/06:msgctl:2:2005/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2004/05/27:msgget:2:2005/03/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2008/04/23:msgop:2:2006/03/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2008/04/23:msgrcv:2:msgop:2:
-@:LDP man-pages:3.35:2008/04/23:msgsnd:2:msgop:2:
-○:LDP man-pages:3.35:2008/04/22:msync:2:2008/07/24::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.35:2011/09/14:munlock:2:mlock:2:
-@:LDP man-pages:3.35:2011/09/14:munlockall:2:mlock:2:
-@:LDP man-pages:3.35:2010/06/20:munmap:2:mmap:2:
-○:LDP man-pages:3.35:2009/01/19:nanosleep:2:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:1997/07/16:nfsservctl:2:1997/08/30::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-○:LDP man-pages:3.35:2007/07/26:nice:2:2005/10/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2011/10/04:oldfstat:2:stat:2:
-@:LDP man-pages:3.35:2011/10/04:oldlstat:2:stat:2:
-@:LDP man-pages:3.35:2008/12/03:oldolduname:2:uname:2:
-@:LDP man-pages:3.35:2011/10/04:oldstat:2:stat:2:
-@:LDP man-pages:3.35:2008/12/03:olduname:2:uname:2:
-☆:LDP man-pages:3.31=>3.35:2011/09/08:open:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2009/12/13:openat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.35:1995/11/29:outb:2:2005/10/30::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.35:1995/11/29:outb_p:2:outb:2:
-@:LDP man-pages:3.35:1995/11/29:outl:2:outb:2:
-@:LDP man-pages:3.35:1995/11/29:outl_p:2:outb:2:
-@:LDP man-pages:3.35:1995/11/29:outsb:2:outb:2:
-@:LDP man-pages:3.35:1995/11/29:outsl:2:outb:2:
-@:LDP man-pages:3.35:1995/11/29:outsw:2:outb:2:
-@:LDP man-pages:3.35:1995/11/29:outw:2:outb:2:
-@:LDP man-pages:3.35:1995/11/29:outw_p:2:outb:2:
-@:LDP man-pages:3.35:2009/12/05:path_resolution:2:path_resolution:7:
-○:LDP man-pages:3.35:2008/10/06:pause:2:1997/06/27::suto@av.crl.sony.co.jp:SUTO, Mitsuaki:
-@:LDP man-pages:3.35:2003/07/14:pciconfig_iobase:2:pciconfig_read:2:
-○:LDP man-pages:3.35:2003/07/14:pciconfig_read:2:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.35:2003/07/14:pciconfig_write:2:pciconfig_read:2:
-○:LDP man-pages:3.35:2003/01/01:personality:2:2003/09/14::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.35:2010/09/10:pipe:2:2008/11/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/10:pipe2:2:pipe:2:
-○:LDP man-pages:3.35:2007/06/01:pivot_root:2:2000/06/14::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.35:2010/09/20:poll:2:2006/07/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-☆:LDP man-pages:3.24=>3.35:2010/10/09:posix_fadvise:2:2007/02/08::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.35:2010/09/20:ppoll:2:poll:2:
-☆:LDP man-pages:3.24=>3.35:2011/09/17:prctl:2:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-☆:LDP man-pages:3.31=>3.35:2010/11/21:pread:2:1999/06/25::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-@:LDP man-pages:3.35:2010/11/21:pread64:2:pread:2:
-@:LDP man-pages:3.35:2010/11/17:preadv:2:readv:2:
-@:LDP man-pages:3.35:2011/09/10:prlimit:2:getrlimit:2:
-@:LDP man-pages:3.35:2007/07/05:prof:2:unimplemented:2:
-@:LDP man-pages:3.35:2010/08/31:pselect:2:select:2:
-@:LDP man-pages:3.35:2010/08/31:pselect6:2:select:2:
-○:LDP man-pages:3.35:2009/03/30:ptrace:2:2007/05/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2007/07/05:putpmsg:2:unimplemented:2:
-@:LDP man-pages:3.35:2010/11/21:pwrite:2:pread:2:
-@:LDP man-pages:3.35:2010/11/21:pwrite64:2:pwrite:2:
-@:LDP man-pages:3.35:2010/11/17:pwritev:2:readv:2:
-○:LDP man-pages:3.35:0000/00/00:query_module:2:2006/07/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-☆:LDP man-pages:3.24=>3.35:2010/06/16:quotactl:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.35:2009/02/23:read:2:2005/10/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2010/09/10:readahead:2:2005/02/27::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2008/10/02:readdir:2:1997/02/23::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-☆:LDP man-pages:3.32=>3.35:2011/09/20:readlink:2:2006/07/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2009/12/13:readlinkat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO:
-☆:LDP man-pages:3.31=>3.35:2010/11/17:readv:2:2007/06/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-☆:LDP man-pages:3.29=>3.35:2010/10/31:reboot:2:2008/07/24::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.35:2011/09/16:recv:2:2008/12/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2011/09/16:recvfrom:2:recv:2:
-×:LDP man-pages:3.35:2011/10/04:recvmmsg:2:::::
-@:LDP man-pages:3.35:2011/09/16:recvmsg:2:recv:2:
-○:LDP man-pages:3.35:2008/04/22:remap_file_pages:2:2005/10/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2001/12/01:removexattr:2:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2009/03/30:rename:2:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2009/12/13:renameat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO:
-×:LDP man-pages:3.35:2010/02/25:request_key:2:::::
-○:LDP man-pages:3.35:2008/05/08:rmdir:2:2006/07/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2011/09/08:rt_sigaction:2:sigaction:2:
-@:LDP man-pages:3.35:2008/10/04:rt_sigpending:2:sigpending:2:
-@:LDP man-pages:3.35:2008/10/17:rt_sigprocmask:2:sigprocmask:2:
-×:LDP man-pages:3.35:2011/09/18:rt_sigqueueinfo:2:::::
-@:LDP man-pages:3.35:2008/06/26:rt_sigreturn:2:sigreturn:2:
-@:LDP man-pages:3.35:2005/09/15:rt_sigsuspend:2:sigsuspend:2:
-@:LDP man-pages:3.35:2008/10/04:rt_sigtimedwait:2:sigtimedwait:2:
-※:LDP man-pages:3.35:2011/09/18:rt_tgsigqueueinfo:2:rt_sigqueueinfo:2:
-@:LDP man-pages:3.35:2010/09/20:sbrk:2:brk:2:
-○:LDP man-pages:3.35:2006/03/23:sched_get_priority_max:2:2006/04/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2006/03/23:sched_get_priority_min:2:sched_get_priority_max:2:
-@:LDP man-pages:3.35:2010/11/06:sched_getaffinity:2:sched_setaffinity:2:
-@:LDP man-pages:3.35:2006/03/23:sched_getparam:2:sched_setparam:2:
-@:LDP man-pages:3.35:2011/09/19:sched_getscheduler:2:sched_setscheduler:2:
-○:LDP man-pages:3.35:2007/04/06:sched_rr_get_interval:2:2007/06/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2010/11/06:sched_setaffinity:2:2008/12/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2006/03/23:sched_setparam:2:2006/04/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-☆:LDP man-pages:3.24=>3.35:2011/09/19:sched_setscheduler:2:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2008/10/18:sched_yield:2:1997/02/23::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-@:LDP man-pages:3.35:2007/07/05:security:2:unimplemented:2:
-○:LDP man-pages:3.35:2010/08/31:select:2:2007/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2010/06/10:select_tut:2:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2009/09/27:semctl:2:2005/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2004/05/27:semget:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2008/10/04:semop:2:2007/05/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2008/10/04:semtimedop:2:semop:2:
-○:LDP man-pages:3.35:2011/10/01:send:2:2006/04/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-☆:LDP man-pages:3.31=>3.35:2011/09/14:sendfile:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2011/09/14:sendfile64:2:sendfile:2:
-@:LDP man-pages:3.35:2011/10/01:sendmsg:2:send:2:
-@:LDP man-pages:3.35:2011/10/01:sendto:2:send:2:
-○:LDP man-pages:3.35:2008/08/15:set_mempolicy:2:2008/11/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2008/11/27:set_thread_area:2:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2004/09/10:set_tid_address:2:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.35:2009/03/15:setcontext:2:getcontext:2:
-@:LDP man-pages:3.35:2009/09/27:setdomainname:2:getdomainname:2:
-@:LDP man-pages:3.35:2009/10/17:setegid:2:seteuid:2:
-○:LDP man-pages:3.35:2009/10/17:seteuid:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-☆:LDP man-pages:3.31=>3.35:2010/11/22:setfsgid:2:2005/02/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/11/22:setfsgid32:2:setfsgid:2:
-☆:LDP man-pages:3.31=>3.35:2010/11/22:setfsuid:2:2005/02/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/11/22:setfsuid32:2:setfsuid:2:
-☆:LDP man-pages:3.31=>3.35:2010/11/22:setgid:2:2003/02/14::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.35:2010/11/22:setgid32:2:setgid:2:
-@:LDP man-pages:3.35:2010/11/22:setgroups:2:getgroups:2:
-@:LDP man-pages:3.35:2010/11/22:setgroups32:2:setgroups:2:
-@:LDP man-pages:3.35:2010/09/20:sethostid:2:gethostid:3:
-@:LDP man-pages:3.35:2010/09/26:sethostname:2:gethostname:2:
-@:LDP man-pages:3.35:2009/03/15:setitimer:2:getitimer:2:
-×:LDP man-pages:3.35:2011/10/04:setns:2:::::
-○:LDP man-pages:3.35:2010/09/26:setpgid:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/26:setpgrp:2:setpgid:2:
-@:LDP man-pages:3.35:2008/05/29:setpriority:2:getpriority:2:
-@:LDP man-pages:3.35:2010/11/22:setregid:2:setreuid:2:
-@:LDP man-pages:3.35:2010/11/22:setregid32:2:setregid:2:
-@:LDP man-pages:3.35:2010/11/22:setresgid:2:setresuid:2:
-@:LDP man-pages:3.35:2010/11/22:setresgid32:2:setresgid:2:
-☆:LDP man-pages:3.31=>3.35:2010/11/22:setresuid:2:2005/11/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/11/22:setresuid32:2:setresuid:2:
-☆:LDP man-pages:3.31=>3.35:2010/11/22:setreuid:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/11/22:setreuid32:2:setreuid:2:
-@:LDP man-pages:3.35:2011/09/10:setrlimit:2:getrlimit:2:
-○:LDP man-pages:3.35:2008/12/03:setsid:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.35:2008/12/03:setsockopt:2:getsockopt:2:
-@:LDP man-pages:3.35:2009/03/25:settimeofday:2:gettimeofday:2:
-☆:LDP man-pages:3.31=>3.35:2010/11/22:setuid:2:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.35:2010/11/22:setuid32:2:setuid:2:
-○:LDP man-pages:3.35:2008/12/03:setup:2:2008/07/24::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.35:2001/12/31:setxattr:2:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2007/07/05:sgetmask:2:2007/10/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2008/06/03:shmat:2:shmop:2:
-○:LDP man-pages:3.35:2008/08/07:shmctl:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2008/06/03:shmdt:2:shmop:2:
-○:LDP man-pages:3.35:2006/05/02:shmget:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2008/06/03:shmop:2:2006/04/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2008/12/03:shutdown:2:2001/11/09::argrath@ub32.org:Kentaro Shirakata:
-☆:LDP man-pages:3.24=>3.35:2011/09/08:sigaction:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2010/09/26:sigaltstack:2:2006/01/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2008/07/11:signal:2:2007/06/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2009/01/13:signalfd:2:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2009/01/13:signalfd4:2:signalfd:2:
-○:LDP man-pages:3.35:2008/10/04:sigpending:2:2005/12/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2008/10/17:sigprocmask:2:2005/10/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2011/09/18:sigqueue:2:sigqueue:3:
-○:LDP man-pages:3.35:2008/06/26:sigreturn:2:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2005/09/15:sigsuspend:2:2005/10/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2011/10/03:sigtimedwait:2:sigwaitinfo:2:
-○:LDP man-pages:3.35:2011/10/03:sigwaitinfo:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2009/01/19:socket:2:2008/11/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2007/06/28:socketcall:2:1997/03/03::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-○:LDP man-pages:3.35:2008/10/11:socketpair:2:2002/09/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2009/09/15:splice:2:2007/02/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-☆:LDP man-pages:2.67=>3.35:2007/12/20:spu_create:2:2007/10/23::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2007/11/25:spu_run:2:2007/10/23::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2007/07/05:ssetmask:2:sgetmask:2:
-☆:LDP man-pages:3.25=>3.35:2011/10/04:stat:2:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2011/10/04:stat64:2:stat:2:
-☆:LDP man-pages:3.31=>3.35:2010/11/21:statfs:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/11/21:statfs64:2:statfs:2:
-@:LDP man-pages:3.35:2003/08/22:statvfs:2:statvfs:3:
-○:LDP man-pages:3.35:2010/02/25:stime:2:2003/09/14::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.35:2007/07/05:stty:2:unimplemented:2:
-×:LDP man-pages:3.35:2010/10/30:subpage_prot:2:::::
-@:LDP man-pages:3.35:2010/11/15:swapoff:2:swapon:2:
-☆:LDP man-pages:3.31=>3.35:2010/11/15:swapon:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.35:2010/09/20:symlink:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.35:2009/12/13:symlinkat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO:
-☆:LDP man-pages:3.32=>3.35:2011/09/07:sync:2:2003/09/14::argrath@ub32.org:Kentaro Shirakata:
-☆:LDP man-pages:3.24=>3.35:2010/10/09:sync_file_range:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/10/09:sync_file_range2:2:sync_file_range:2:
-@:LDP man-pages:3.35:2011/09/07:syncfs:2:sync:2:
-○:LDP man-pages:3.35:2007/07/26:syscall:2:2002/08/20::ysato@h4.dion.ne.jp:Yuichi SATO:
-☆:LDP man-pages:3.32=>3.35:2011/09/07:syscalls:2:2007/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2008/11/20:sysctl:2:1999/12/03::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-○:LDP man-pages:3.35:2010/06/27:sysfs:2:2001/06/02::ysato@h4.dion.ne.jp:Yuichi SATO:
-○:LDP man-pages:3.35:2007/11/15:sysinfo:2:2000/09/23::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-☆:LDP man-pages:3.32=>3.35:2011/09/07:syslog:2:2008/04/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2009/09/15:tee:2:2007/02/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2011/09/18:tgkill:2:tkill:2:
-☆:LDP man-pages:3.32=>3.35:2011/09/09:time:2:1999/07/27::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-×:LDP man-pages:3.35:2010/09/27:timer_create:2:::::
-×:LDP man-pages:3.35:2009/02/20:timer_delete:2:::::
-×:LDP man-pages:3.35:2009/02/20:timer_getoverrun:2:::::
-※:LDP man-pages:3.35:2009/02/20:timer_gettime:2:timer_settime:2:
-×:LDP man-pages:3.35:2009/02/20:timer_settime:2:::::
-☆:LDP man-pages:3.32=>3.35:2011/09/14:timerfd_create:2:2008/11/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2011/09/14:timerfd_gettime:2:timerfd_create:2:
-@:LDP man-pages:3.35:2011/09/14:timerfd_settime:2:timerfd_create:2:
-○:LDP man-pages:3.35:2008/06/25:times:2:2008/02/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2011/09/18:tkill:2:2005/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-☆:LDP man-pages:3.31=>3.35:2011/09/08:truncate:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2011/09/08:truncate64:2:truncate:2:
-@:LDP man-pages:3.35:2007/07/05:tuxcall:2:unimplemented:2:
-@:LDP man-pages:3.35:2011/09/10:ugetrlimit:2:getrlimit:2:
-○:LDP man-pages:3.35:2008/01/09:umask:2:2008/02/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-☆:LDP man-pages:3.24=>3.35:2010/06/19:umount:2:2008/11/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/06/19:umount2:2:umount:2:
-○:LDP man-pages:3.35:2008/12/03:uname:2:2002/02/14::ysato@h4.dion.ne.jp:Yuichi SATO:
-○:LDP man-pages:3.35:2007/07/05:unimplemented:2:2003/03/06::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-☆:LDP man-pages:3.32=>3.35:2011/09/15:unlink:2:2006/04/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2009/12/13:unlinkat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO:
-☆:LDP man-pages:3.29=>3.35:2010/10/30:unshare:2:2006/08/19::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.35:2005/01/09:uselib:2:2005/04/21::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2003/08/04:ustat:2:2004/06/13::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.35:2008/08/06:utime:2:2006/10/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-×:LDP man-pages:3.35:2009/12/13:utimensat:2:::::
-@:LDP man-pages:3.35:2008/08/06:utimes:2:utime:2:
-○:LDP man-pages:3.35:2010/09/20:vfork:2:2008/11/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2007/07/26:vhangup:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.35:2009/02/20:vm86:2:2004/06/13::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.35:2009/02/20:vm86old:2:vm86:2:
-○:LDP man-pages:3.35:2009/09/15:vmsplice:2:2007/02/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2007/07/05:vserver:2:unimplemented:2:
-○:LDP man-pages:3.35:2010/09/26:wait:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:wait3:2:wait4:2:
-○:LDP man-pages:3.35:2010/09/20:wait4:2:2005/03/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/26:waitid:2:wait:2:
-@:LDP man-pages:3.35:2010/09/26:waitpid:2:wait:2:
-○:LDP man-pages:3.35:2010/08/29:write:2:2007/05/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/11/17:writev:2:readv:2:
-@:LDP man-pages:3.35:2008/11/20:CMSG_ALIGN:3:cmsg:3:
-@:LDP man-pages:3.35:2008/11/20:CMSG_FIRSTHDR:3:cmsg:3:
-@:LDP man-pages:3.35:2008/11/20:CMSG_NXTHDR:3:cmsg:3:
-@:LDP man-pages:3.35:2008/11/20:CMSG_SPACE:3:cmsg:3:
-※:LDP man-pages:3.35:2010/09/10:CPU_ALLOC:3:CPU_SET:3:
-※:LDP man-pages:3.35:2010/09/10:CPU_ALLOC_SIZE:3:CPU_SET:3:
-※:LDP man-pages:3.35:2010/09/10:CPU_AND:3:CPU_SET:3:
-※:LDP man-pages:3.35:2010/09/10:CPU_AND_S:3:CPU_SET:3:
-※:LDP man-pages:3.35:2010/09/10:CPU_CLR:3:CPU_SET:3:
-※:LDP man-pages:3.35:2010/09/10:CPU_CLR_S:3:CPU_SET:3:
-※:LDP man-pages:3.35:2010/09/10:CPU_COUNT:3:CPU_SET:3:
-※:LDP man-pages:3.35:2010/09/10:CPU_COUNT_S:3:CPU_SET:3:
-※:LDP man-pages:3.35:2010/09/10:CPU_EQUAL:3:CPU_SET:3:
-※:LDP man-pages:3.35:2010/09/10:CPU_EQUAL_S:3:CPU_SET:3:
-※:LDP man-pages:3.35:2010/09/10:CPU_FREE:3:CPU_SET:3:
-※:LDP man-pages:3.35:2010/09/10:CPU_ISSET:3:CPU_SET:3:
-※:LDP man-pages:3.35:2010/09/10:CPU_ISSET_S:3:CPU_SET:3:
-※:LDP man-pages:3.35:2010/09/10:CPU_OR:3:CPU_SET:3:
-※:LDP man-pages:3.35:2010/09/10:CPU_OR_S:3:CPU_SET:3:
-×:LDP man-pages:3.35:2010/09/10:CPU_SET:3:::::
-※:LDP man-pages:3.35:2010/09/10:CPU_SET_S:3:CPU_SET:3:
-※:LDP man-pages:3.35:2010/09/10:CPU_XOR:3:CPU_SET:3:
-※:LDP man-pages:3.35:2010/09/10:CPU_XOR_S:3:CPU_SET:3:
-※:LDP man-pages:3.35:2010/09/10:CPU_ZERO:3:CPU_SET:3:
-※:LDP man-pages:3.35:2010/09/10:CPU_ZERO_S:3:CPU_SET:3:
-@:LDP man-pages:3.35:2010/08/31:FD_CLR:3:select:2:
-@:LDP man-pages:3.35:2010/08/31:FD_ISSET:3:select:2:
-@:LDP man-pages:3.35:2010/08/31:FD_SET:3:select:2:
-@:LDP man-pages:3.35:2010/08/31:FD_ZERO:3:select:2:
-@:LDP man-pages:3.35:2007/07/26:HUGE_VAL:3:INFINITY:3:
-@:LDP man-pages:3.35:2007/07/26:HUGE_VALF:3:INFINITY:3:
-@:LDP man-pages:3.35:2007/07/26:HUGE_VALL:3:INFINITY:3:
-○:LDP man-pages:3.35:2007/07/26:INFINITY:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.35:1999/07/04:MB_CUR_MAX:3:1999/09/11::cz8cb01@linux.or.jp:HAYAKAWA Hitoshi:
-○:LDP man-pages:3.35:1999/07/04:MB_LEN_MAX:3:1999/09/11::cz8cb01@linux.or.jp:HAYAKAWA Hitoshi:
-@:LDP man-pages:3.35:2007/07/26:NAN:3:INFINITY:3:
-@:LDP man-pages:3.35:2001/12/16:__fbufsize:3:stdio_ext:3:
-@:LDP man-pages:3.35:2001/12/16:__flbf:3:stdio_ext:3:
-@:LDP man-pages:3.35:2001/12/16:__fpending:3:stdio_ext:3:
-@:LDP man-pages:3.35:2001/12/15:__fpurge:3:fpurge:3:
-@:LDP man-pages:3.35:2001/12/16:__freadable:3:stdio_ext:3:
-@:LDP man-pages:3.35:2001/12/16:__freading:3:stdio_ext:3:
-@:LDP man-pages:3.35:2001/12/16:__fsetlocking:3:stdio_ext:3:
-@:LDP man-pages:3.35:2001/12/16:__fwritable:3:stdio_ext:3:
-@:LDP man-pages:3.35:2001/12/16:__fwriting:3:stdio_ext:3:
-@:LDP man-pages:3.35:2010/10/13:__malloc_hook:3:malloc_hook:3:
-○:LDP man-pages:3.35:1997/03/08:__setfpucw:3:2000/09/20::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-@:LDP man-pages:3.35:2001/12/16:_flushlbf:3:stdio_ext:3:
-○:LDP man-pages:3.35:2010/09/20:a64l:3:2004/01/17::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.35:2007/12/15:abort:3:1998/02/18::tyoshino@eng.toyo.ac.jp:Takashi Yoshino:
-○:LDP man-pages:3.35:2010/09/20:abs:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.35:2010/09/20:acos:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:acosf:3:acos:3:
-○:LDP man-pages:3.35:2010/09/20:acosh:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:acoshf:3:acosh:3:
-@:LDP man-pages:3.35:2010/09/20:acoshl:3:acosh:3:
-@:LDP man-pages:3.35:2010/09/20:acosl:3:acos:3:
-@:LDP man-pages:3.35:2009/09/15:addmntent:3:getmntent:3:
-○:LDP man-pages:3.35:2008/06/14:addseverity:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.35:2008/06/22:adjtime:3:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-☆:LDP man-pages:3.25=>3.35:2011/10/04:aio_cancel:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO:
-☆:LDP man-pages:3.25=>3.35:2010/10/03:aio_error:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO:
-☆:LDP man-pages:3.25=>3.35:2010/10/02:aio_fsync:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO:
-×:LDP man-pages:3.35:2010/10/06:aio_init:3:::::
-☆:LDP man-pages:3.25=>3.35:2010/10/03:aio_read:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO:
-☆:LDP man-pages:3.25=>3.35:2010/10/03:aio_return:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO:
-☆:LDP man-pages:3.25=>3.35:2010/10/02:aio_suspend:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO:
-☆:LDP man-pages:3.25=>3.35:2010/10/02:aio_write:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.35:2008/01/24:alloca:3:2002/09/19::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.35:2011/09/08:alphasort:3:scandir:3:
-@:LDP man-pages:3.35:2007/05/18:argz:3:argz_add:3:
-○:LDP man-pages:3.35:2007/05/18:argz_add:3:2003/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2007/05/18:argz_add_sep:3:argz_add:3:
-@:LDP man-pages:3.35:2007/05/18:argz_append:3:argz_add:3:
-@:LDP man-pages:3.35:2007/05/18:argz_count:3:argz_add:3:
-@:LDP man-pages:3.35:2007/05/18:argz_create:3:argz_add:3:
-@:LDP man-pages:3.35:2007/05/18:argz_create_sep:3:argz_add:3:
-@:LDP man-pages:3.35:2007/05/18:argz_delete:3:argz_add:3:
-@:LDP man-pages:3.35:2007/05/18:argz_extract:3:argz_add:3:
-@:LDP man-pages:3.35:2007/05/18:argz_insert:3:argz_add:3:
-@:LDP man-pages:3.35:2007/05/18:argz_next:3:argz_add:3:
-@:LDP man-pages:3.35:2007/05/18:argz_replace:3:argz_add:3:
-@:LDP man-pages:3.35:2007/05/18:argz_stringify:3:argz_add:3:
-@:LDP man-pages:3.35:2010/02/25:asctime:3:ctime:3:
-@:LDP man-pages:3.35:2010/02/25:asctime_r:3:ctime:3:
-○:LDP man-pages:3.35:2010/09/20:asin:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:asinf:3:asin:3:
-○:LDP man-pages:3.35:2010/09/20:asinh:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:asinhf:3:asinh:3:
-@:LDP man-pages:3.35:2010/09/20:asinhl:3:asinh:3:
-@:LDP man-pages:3.35:2010/09/20:asinl:3:asin:3:
-○:LDP man-pages:3.35:2001/12/18:asprintf:3:2002/01/14::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.35:2002/08/25:assert:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.35:2002/08/25:assert_perror:3:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2010/09/20:atan:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2010/09/20:atan2:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:atan2f:3:atan2:3:
-@:LDP man-pages:3.35:2010/09/20:atan2l:3:atan2:3:
-@:LDP man-pages:3.35:2010/09/20:atanf:3:atan:3:
-○:LDP man-pages:3.35:2010/09/11:atanh:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/11:atanhf:3:atanh:3:
-@:LDP man-pages:3.35:2010/09/11:atanhl:3:atanh:3:
-@:LDP man-pages:3.35:2010/09/20:atanl:3:atan:3:
-○:LDP man-pages:3.35:2008/12/05:atexit:3:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:1993/03/29:atof:3:1998/02/18::tyoshino@eng.toyo.ac.jp:Takashi Yoshino:
-○:LDP man-pages:3.35:2010/09/20:atoi:3:2001/02/09::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.35:2010/09/20:atol:3:atoi:3:
-@:LDP man-pages:3.35:2010/09/20:atoll:3:atoi:3:
-@:LDP man-pages:3.35:2010/09/20:atoq:3:atoi:3:
-@:LDP man-pages:3.35:2008/07/17:auth_destroy:3:rpc:3:
-@:LDP man-pages:3.35:2008/07/17:authnone_create:3:rpc:3:
-@:LDP man-pages:3.35:2008/07/17:authunix_create:3:rpc:3:
-@:LDP man-pages:3.35:2008/07/17:authunix_create_default:3:rpc:3:
-○:LDP man-pages:3.35:2008/06/14:backtrace:3:2007/10/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2008/06/14:backtrace_symbols:3:backtrace:3:
-@:LDP man-pages:3.35:2008/06/14:backtrace_symbols_fd:3:backtrace:3:
-○:LDP man-pages:3.35:2009/03/30:basename:3:2007/05/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2008/08/06:bcmp:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.35:2009/03/15:bcopy:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
-※:LDP man-pages:3.35:2010/09/10:be16toh:3:endian:3:
-※:LDP man-pages:3.35:2010/09/10:be32toh:3:endian:3:
-※:LDP man-pages:3.35:2010/09/10:be64toh:3:endian:3:
-○:LDP man-pages:3.35:2008/12/03:bindresvport:3:2007/06/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2009/03/15:bsd_signal:3:2007/06/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2003/11/01:bsearch:3:2005/02/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2004/12/26:bstring:3:2003/11/13::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.35:2011/09/22:btowc:3:1999/09/11::cz8cb01@linux.or.jp:HAYAKAWA Hitoshi:
-○:LDP man-pages:3.35:1994/08/18:btree:3:1999/08/16::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.35:2009/01/15:byteorder:3:2005/11/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2008/08/06:bzero:3:2003/03/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2007/12/26:cabs:3:2003/07/23::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2007/12/26:cabsf:3:cabs:3:
-@:LDP man-pages:3.35:2007/12/26:cabsl:3:cabs:3:
-○:LDP man-pages:3.35:2011/09/15:cacos:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2011/09/15:cacosf:3:cacos:3:
-○:LDP man-pages:3.35:2011/09/15:cacosh:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2011/09/15:cacoshf:3:cacosh:3:
-@:LDP man-pages:3.35:2011/09/15:cacoshl:3:cacosh:3:
-@:LDP man-pages:3.35:2011/09/15:cacosl:3:cacos:3:
-@:LDP man-pages:3.35:2011/09/08:calloc:3:malloc:3:
-@:LDP man-pages:3.35:2008/07/17:callrpc:3:rpc:3:
-○:LDP man-pages:3.35:2005/07/14:canonicalize_file_name:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2008/08/11:carg:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2008/08/11:cargf:3:carg:3:
-@:LDP man-pages:3.35:2008/08/11:cargl:3:carg:3:
-○:LDP man-pages:3.35:2008/08/11:casin:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2008/08/11:casinf:3:casin:3:
-○:LDP man-pages:3.35:2008/08/11:casinh:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2008/08/11:casinhf:3:casinh:3:
-@:LDP man-pages:3.35:2008/08/11:casinhl:3:casinh:3:
-@:LDP man-pages:3.35:2008/08/11:casinl:3:casin:3:
-○:LDP man-pages:3.35:2011/09/15:catan:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2011/09/15:catanf:3:catan:3:
-○:LDP man-pages:3.35:2011/09/15:catanh:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2011/09/15:catanhf:3:catanh:3:
-@:LDP man-pages:3.35:2011/09/15:catanhl:3:catanh:3:
-@:LDP man-pages:3.35:2011/09/15:catanl:3:catan:3:
-@:LDP man-pages:3.35:2001/12/14:catclose:3:catopen:3:
-○:LDP man-pages:3.35:1998/08/09:catgets:3:1999/03/01::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.35:2001/12/14:catopen:3:2002/01/14::ysato@h4.dion.ne.jp:Yuichi SATO:
-@:LDP man-pages:3.35:2007/05/18:cbc_crypt:3:des_crypt:3:
-○:LDP man-pages:3.35:2010/09/20:cbrt:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:cbrtf:3:cbrt:3:
-@:LDP man-pages:3.35:2010/09/20:cbrtl:3:cbrt:3:
-○:LDP man-pages:3.35:2008/08/11:ccos:3:2003/07/28::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2008/08/11:ccosf:3:ccos:3:
-○:LDP man-pages:3.35:2008/08/11:ccosh:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2008/08/11:ccoshf:3:ccosh:3:
-@:LDP man-pages:3.35:2008/08/11:ccoshl:3:ccosh:3:
-@:LDP man-pages:3.35:2008/08/11:ccosl:3:ccos:3:
-○:LDP man-pages:3.35:2010/09/20:ceil:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:ceilf:3:ceil:3:
-@:LDP man-pages:3.35:2010/09/20:ceill:3:ceil:3:
-○:LDP man-pages:3.35:2010/09/12:cerf:3:2005/02/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/12:cerfc:3:cerf:3:
-@:LDP man-pages:3.35:2010/09/12:cerfcf:3:cerf:3:
-@:LDP man-pages:3.35:2010/09/12:cerfcl:3:cerf:3:
-@:LDP man-pages:3.35:2010/09/12:cerff:3:cerf:3:
-@:LDP man-pages:3.35:2010/09/12:cerfl:3:cerf:3:
-○:LDP man-pages:3.35:2008/08/11:cexp:3:2003/08/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2002/07/28:cexp2:3:2005/03/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2002/07/28:cexp2f:3:cexp2:3:
-@:LDP man-pages:3.35:2002/07/28:cexp2l:3:cexp2:3:
-@:LDP man-pages:3.35:2008/08/11:cexpf:3:cexp:3:
-@:LDP man-pages:3.35:2008/08/11:cexpl:3:cexp:3:
-@:LDP man-pages:3.35:2011/09/08:cfgetispeed:3:termios:3:
-@:LDP man-pages:3.35:2011/09/08:cfgetospeed:3:termios:3:
-@:LDP man-pages:3.35:2011/09/08:cfmakeraw:3:termios:3:
-○:LDP man-pages:3.35:2007/07/26:cfree:3:2004/08/14::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.35:2011/09/08:cfsetispeed:3:termios:3:
-@:LDP man-pages:3.35:2011/09/08:cfsetospeed:3:termios:3:
-@:LDP man-pages:3.35:2011/09/08:cfsetspeed:3:termios:3:
-○:LDP man-pages:3.35:2007/12/23:cimag:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2007/12/23:cimagf:3:cimag:3:
-@:LDP man-pages:3.35:2007/12/23:cimagl:3:cimag:3:
-○:LDP man-pages:3.35:2010/10/04:clearenv:3:2002/08/20::ysato@h4.dion.ne.jp:Yuichi SATO:
-@:LDP man-pages:3.35:2008/08/29:clearerr:3:ferror:3:
-@:LDP man-pages:3.35:2008/08/29:clearerr_unlocked:3:unlocked_stdio:3:
-@:LDP man-pages:3.35:2008/07/17:clnt_broadcast:3:rpc:3:
-@:LDP man-pages:3.35:2008/07/17:clnt_call:3:rpc:3:
-@:LDP man-pages:3.35:2008/07/17:clnt_control:3:rpc:3:
-@:LDP man-pages:3.35:2008/07/17:clnt_create:3:rpc:3:
-@:LDP man-pages:3.35:2008/07/17:clnt_destroy:3:rpc:3:
-@:LDP man-pages:3.35:2008/07/17:clnt_freeres:3:rpc:3:
-@:LDP man-pages:3.35:2008/07/17:clnt_geterr:3:rpc:3:
-@:LDP man-pages:3.35:2008/07/17:clnt_pcreateerror:3:rpc:3:
-@:LDP man-pages:3.35:2008/07/17:clnt_perrno:3:rpc:3:
-@:LDP man-pages:3.35:2008/07/17:clnt_perror:3:rpc:3:
-@:LDP man-pages:3.35:2008/07/17:clnt_spcreateerror:3:rpc:3:
-@:LDP man-pages:3.35:2008/07/17:clnt_sperrno:3:rpc:3:
-@:LDP man-pages:3.35:2008/07/17:clnt_sperror:3:rpc:3:
-@:LDP man-pages:3.35:2008/07/17:clntraw_create:3:rpc:3:
-@:LDP man-pages:3.35:2008/07/17:clnttcp_create:3:rpc:3:
-@:LDP man-pages:3.35:2008/07/17:clntudp_bufcreate:3:rpc:3:
-@:LDP man-pages:3.35:2008/07/17:clntudp_create:3:rpc:3:
-○:LDP man-pages:3.35:2008/08/28:clock:3:2007/06/01::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-×:LDP man-pages:3.35:2010/09/10:clock_getcpuclockid:3:::::
-@:LDP man-pages:3.35:2010/02/03:clock_getres:3:clock_getres:2:
-@:LDP man-pages:3.35:2010/02/03:clock_gettime:3:clock_getres:2:
-@:LDP man-pages:3.35:2010/02/03:clock_settime:3:clock_getres:2:
-○:LDP man-pages:3.35:2008/08/11:clog:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2008/08/11:clog10:3:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2008/08/11:clog10f:3:clog10:3:
-@:LDP man-pages:3.35:2008/08/11:clog10l:3:clog10:3:
-○:LDP man-pages:3.35:2002/07/28:clog2:3:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2002/07/28:clog2f:3:clog2:3:
-@:LDP man-pages:3.35:2002/07/28:clog2l:3:clog2:3:
-@:LDP man-pages:3.35:2008/08/11:clogf:3:clog:3:
-@:LDP man-pages:3.35:2008/08/11:clogl:3:clog:3:
-○:LDP man-pages:3.35:2008/09/23:closedir:3:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.35:2008/11/12:closelog:3:syslog:3:
-○:LDP man-pages:3.35:2008/11/20:cmsg:3:1999/08/17::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.35:2010/02/03:confstr:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2008/08/11:conj:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2008/08/11:conjf:3:conj:3:
-@:LDP man-pages:3.35:2008/08/11:conjl:3:conj:3:
-○:LDP man-pages:3.35:2010/09/20:copysign:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:copysignf:3:copysign:3:
-@:LDP man-pages:3.35:2010/09/20:copysignl:3:copysign:3:
-○:LDP man-pages:3.35:2010/09/11:cos:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/11:cosf:3:cos:3:
-○:LDP man-pages:3.35:2010/09/20:cosh:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:coshf:3:cosh:3:
-@:LDP man-pages:3.35:2010/09/20:coshl:3:cosh:3:
-@:LDP man-pages:3.35:2010/09/11:cosl:3:cos:3:
-○:LDP man-pages:3.35:2002/07/28:cpow:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2002/07/28:cpowf:3:cpow:3:
-@:LDP man-pages:3.35:2002/07/28:cpowl:3:cpow:3:
-○:LDP man-pages:3.35:2010/06/10:cproj:3:2005/03/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/06/10:cprojf:3:cproj:3:
-@:LDP man-pages:3.35:2010/06/10:cprojl:3:cproj:3:
-○:LDP man-pages:3.35:2007/12/26:creal:3:2003/07/28::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2007/12/26:crealf:3:creal:3:
-@:LDP man-pages:3.35:2007/12/26:creall:3:creal:3:
-○:LDP man-pages:3.35:2011/09/15:crypt:3:2008/10/08::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.35:2011/09/15:crypt_r:3:crypt:3:
-○:LDP man-pages:3.35:2008/08/11:csin:3:2003/07/28::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2008/08/11:csinf:3:csin:3:
-○:LDP man-pages:3.35:2008/08/11:csinh:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2008/08/11:csinhf:3:csinh:3:
-@:LDP man-pages:3.35:2008/08/11:csinhl:3:csinh:3:
-@:LDP man-pages:3.35:2008/08/11:csinl:3:csin:3:
-○:LDP man-pages:3.35:2008/08/11:csqrt:3:2003/08/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2008/08/11:csqrtf:3:csqrt:3:
-@:LDP man-pages:3.35:2008/08/11:csqrtl:3:csqrt:3:
-○:LDP man-pages:3.35:2008/08/11:ctan:3:2005/02/21::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2008/08/11:ctanf:3:ctan:3:
-○:LDP man-pages:3.35:2008/08/11:ctanh:3:2005/02/21::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2008/08/11:ctanhf:3:ctanh:3:
-@:LDP man-pages:3.35:2008/08/11:ctanhl:3:ctanh:3:
-@:LDP man-pages:3.35:2008/08/11:ctanl:3:ctan:3:
-○:LDP man-pages:3.35:2007/07/26:ctermid:3:1997/2/10::nagoya@cc.hit-u.ac.jp:NAGOYA Hiroaki:
-○:LDP man-pages:3.35:2010/02/25:ctime:3:2008/11/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/02/25:ctime_r:3:ctime:3:
-@:LDP man-pages:3.35:2008/06/29:cuserid:3:getlogin:3:
-○:LDP man-pages:3.35:2009/12/05:daemon:3:2002/01/14::ysato@h4.dion.ne.jp:Yuichi SATO:
-@:LDP man-pages:3.35:2010/02/25:daylight:3:tzset:3:
-@:LDP man-pages:3.35:1994/01/02:db:3:dbopen:3:
-○:LDP man-pages:3.35:1994/01/02:dbopen:3:1999/08/19::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.35:2007/05/18:des_crypt:3:2004/08/14::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.35:2007/05/18:des_setparity:3:des_crypt:3:
-○:LDP man-pages:3.35:2010/02/25:difftime:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2010/09/26:dirfd:3:2003/10/15::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.35:2009/03/30:dirname:3:basename:3:
-○:LDP man-pages:3.35:2010/09/20:div:3:2004/06/13::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.35:2007/05/18:dl_iterate_phdr:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.35:2008/12/06:dladdr:3:dlopen:3:
-@:LDP man-pages:3.35:2008/12/06:dlclose:3:dlopen:3:
-@:LDP man-pages:3.35:2008/12/06:dlerror:3:dlopen:3:
-○:LDP man-pages:3.35:2008/12/06:dlopen:3:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2008/12/06:dlsym:3:dlopen:3:
-@:LDP man-pages:3.35:2008/12/06:dlvsym:3:dlopen:3:
-@:LDP man-pages:3.35:2010/06/17:dn_comp:3:resolver:3:
-@:LDP man-pages:3.35:2010/06/17:dn_expand:3:resolver:3:
-○:LDP man-pages:3.35:2010/09/15:dprintf:3:2002/01/14::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.35:2007/07/26:drand48:3:1997/01/20::tyoshino@eng.toyo.ac.jp:YOSHINO Takashi:
-○:LDP man-pages:3.35:2007/07/26:drand48_r:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.35:2010/09/20:drem:3:remainder:3:
-@:LDP man-pages:3.35:2010/09/20:dremf:3:remainder:3:
-@:LDP man-pages:3.35:2010/09/20:dreml:3:remainder:3:
-○:LDP man-pages:3.35:2010/09/22:dysize:3:2002/01/06::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-@:LDP man-pages:3.35:2010/11/01:eaccess:3:euidaccess:3:
-@:LDP man-pages:3.35:2007/05/18:ecb_crypt:3:des_crypt:3:
-○:LDP man-pages:3.35:2010/09/20:ecvt:3:2009/05/14::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.35:2007/07/26:ecvt_r:3:2002/09/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2008/07/17:edata:3:end:3:
-○:LDP man-pages:3.35:2003/04/04:encrypt:3:2004/02/06::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.35:2003/04/04:encrypt_r:3:encrypt:3:
-○:LDP man-pages:3.35:2008/07/17:end:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2003/09/09:endaliasent:3:setaliasent:3:
-@:LDP man-pages:3.35:2002/02/28:endfsent:3:getfsent:3:
-@:LDP man-pages:3.35:2010/10/21:endgrent:3:getgrent:3:
-@:LDP man-pages:3.35:2010/10/04:endhostent:3:gethostbyname:3:
-×:LDP man-pages:3.35:2010/09/10:endian:3:::::
-@:LDP man-pages:3.35:2009/09/15:endmntent:3:getmntent:3:
-@:LDP man-pages:3.35:2008/08/19:endnetent:3:getnetent:3:
-@:LDP man-pages:3.35:2007/07/26:endnetgrent:3:setnetgrent:3:
-@:LDP man-pages:3.35:2008/08/19:endprotoent:3:getprotoent:3:
-@:LDP man-pages:3.35:2010/10/21:endpwent:3:getpwent:3:
-@:LDP man-pages:3.35:2008/08/19:endrpcent:3:getrpcent:3:
-@:LDP man-pages:3.35:2008/08/19:endservent:3:getservent:3:
-@:LDP man-pages:3.35:2010/02/25:endspent:3:getspnam:3:
-@:LDP man-pages:3.35:2002/07/18:endttyent:3:getttyent:3:
-@:LDP man-pages:3.35:2007/07/26:endusershell:3:getusershell:3:
-@:LDP man-pages:3.35:2008/06/29:endutent:3:getutent:3:
-@:LDP man-pages:3.35:2008/06/29:endutxent:3:getutent:3:
-@:LDP man-pages:3.35:2007/05/18:envz:3:envz_add:3:
-○:LDP man-pages:3.35:2007/05/18:envz_add:3:2003/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2007/05/18:envz_entry:3:envz_add:3:
-@:LDP man-pages:3.35:2007/05/18:envz_get:3:envz_add:3:
-@:LDP man-pages:3.35:2007/05/18:envz_merge:3:envz_add:3:
-@:LDP man-pages:3.35:2007/05/18:envz_remove:3:envz_add:3:
-@:LDP man-pages:3.35:2007/05/18:envz_strip:3:envz_add:3:
-@:LDP man-pages:3.35:2007/07/26:erand48:3:drand48:3:
-@:LDP man-pages:3.35:2007/07/26:erand48_r:3:drand48_r:3:
-○:LDP man-pages:3.35:2010/09/20:erf:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2010/09/20:erfc:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:erfcf:3:erfc:3:
-@:LDP man-pages:3.35:2010/09/20:erfcl:3:erfc:3:
-@:LDP man-pages:3.35:2010/09/20:erff:3:erf:3:
-@:LDP man-pages:3.35:2010/09/20:erfl:3:erf:3:
-○:LDP man-pages:3.35:2011/09/15:err:3:2003/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2008/07/09:errno:3:2006/07/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2010/08/29:error:3:2006/08/19::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.35:2010/08/29:error_at_line:3:error:3:
-@:LDP man-pages:3.35:2010/08/29:error_message_count:3:error:3:
-@:LDP man-pages:3.35:2010/08/29:error_one_per_line:3:error:3:
-@:LDP man-pages:3.35:2010/08/29:error_print_progname:3:error:3:
-@:LDP man-pages:3.35:2011/09/15:errx:3:err:3:
-@:LDP man-pages:3.35:2008/07/17:etext:3:end:3:
-○:LDP man-pages:3.35:2002/07/20:ether_aton:3:2002/09/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2002/07/20:ether_aton_r:3:ether_aton:3:
-@:LDP man-pages:3.35:2002/07/20:ether_hostton:3:ether_aton:3:
-@:LDP man-pages:3.35:2002/07/20:ether_line:3:ether_aton:3:
-@:LDP man-pages:3.35:2002/07/20:ether_ntoa:3:ether_aton:3:
-@:LDP man-pages:3.35:2002/07/20:ether_ntoa_r:3:ether_aton:3:
-@:LDP man-pages:3.35:2002/07/20:ether_ntohost:3:ether_aton:3:
-☆:LDP man-pages:3.29=>3.35:2010/11/01:euidaccess:3:2007/06/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/08/30:eventfd_read:3:eventfd:2:
-@:LDP man-pages:3.35:2010/08/30:eventfd_write:3:eventfd:2:
-○:LDP man-pages:3.35:2010/09/25:exec:3:2005/03/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/25:execl:3:exec:3:
-@:LDP man-pages:3.35:2010/09/25:execle:3:exec:3:
-@:LDP man-pages:3.35:2010/09/25:execlp:3:exec:3:
-@:LDP man-pages:3.35:2010/09/25:execv:3:exec:3:
-@:LDP man-pages:3.35:2010/09/25:execvp:3:exec:3:
-@:LDP man-pages:3.35:2010/09/25:execvpe:3:exec:3:
-○:LDP man-pages:3.35:2009/09/20:exit:3:2007/06/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2010/09/20:exp:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2008/08/11:exp10:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2008/08/11:exp10f:3:exp10:3:
-@:LDP man-pages:3.35:2008/08/11:exp10l:3:exp10:3:
-○:LDP man-pages:3.35:2010/09/20:exp2:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:exp2f:3:exp2:3:
-@:LDP man-pages:3.35:2010/09/20:exp2l:3:exp2:3:
-@:LDP man-pages:3.35:2010/09/20:expf:3:exp:3:
-@:LDP man-pages:3.35:2010/09/20:expl:3:exp:3:
-○:LDP man-pages:3.35:2010/09/12:expm1:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/12:expm1f:3:expm1:3:
-@:LDP man-pages:3.35:2010/09/12:expm1l:3:expm1:3:
-○:LDP man-pages:3.35:2010/09/20:fabs:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:fabsf:3:fabs:3:
-@:LDP man-pages:3.35:2010/09/20:fabsl:3:fabs:3:
-○:LDP man-pages:3.35:2009/02/23:fclose:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.35:2006/12/27:fcloseall:3:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:fcvt:3:ecvt:3:
-@:LDP man-pages:3.35:2007/07/26:fcvt_r:3:ecvt_r:3:
-○:LDP man-pages:3.35:2010/09/20:fdim:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:fdimf:3:fdim:3:
-@:LDP man-pages:3.35:2010/09/20:fdiml:3:fdim:3:
-@:LDP man-pages:3.35:2009/02/23:fdopen:3:fopen:3:
-@:LDP man-pages:3.35:2010/06/20:fdopendir:3:opendir:3:
-@:LDP man-pages:3.35:2010/10/31:feclearexcept:3:fenv:3:
-@:LDP man-pages:3.35:2010/10/31:fedisableexcept:3:fenv:3:
-@:LDP man-pages:3.35:2010/10/31:feenableexcept:3:fenv:3:
-@:LDP man-pages:3.35:2010/10/31:fegetenv:3:fenv:3:
-@:LDP man-pages:3.35:2010/10/31:fegetexcept:3:fenv:3:
-@:LDP man-pages:3.35:2010/10/31:fegetexceptflag:3:fenv:3:
-@:LDP man-pages:3.35:2010/10/31:fegetround:3:fenv:3:
-@:LDP man-pages:3.35:2010/10/31:feholdexcept:3:fenv:3:
-○:LDP man-pages:3.35:2010/10/31:fenv:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2008/08/29:feof:3:ferror:3:
-@:LDP man-pages:3.35:2008/08/29:feof_unlocked:3:unlocked_stdio:3:
-@:LDP man-pages:3.35:2010/10/31:feraiseexcept:3:fenv:3:
-○:LDP man-pages:3.35:2008/08/29:ferror:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.35:2008/08/29:ferror_unlocked:3:unlocked_stdio:3:
-@:LDP man-pages:3.35:2010/10/31:fesetenv:3:fenv:3:
-@:LDP man-pages:3.35:2010/10/31:fesetexceptflag:3:fenv:3:
-@:LDP man-pages:3.35:2010/10/31:fesetround:3:fenv:3:
-@:LDP man-pages:3.35:2010/10/31:fetestexcept:3:fenv:3:
-@:LDP man-pages:3.35:2010/10/31:feupdateenv:3:fenv:3:
-○:LDP man-pages:3.35:2010/09/15:fexecve:3:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2009/09/06:fflush:3:2001/11/09::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.35:2008/08/29:fflush_unlocked:3:unlocked_stdio:3:
-○:LDP man-pages:3.35:2010/09/20:ffs:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.35:2010/09/20:ffsl:3:ffs:3:
-@:LDP man-pages:3.35:2010/09/20:ffsll:3:ffs:3:
-@:LDP man-pages:3.35:2011/09/28:fgetc:3:gets:3:
-@:LDP man-pages:3.35:2008/08/29:fgetc_unlocked:3:unlocked_stdio:3:
-○:LDP man-pages:3.35:2008/07/10:fgetgrent:3:1997/12/19::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
-@:LDP man-pages:3.35:2010/10/21:fgetgrent_r:3:getgrent_r:3:
-@:LDP man-pages:3.35:1993/11/29:fgetpos:3:fseek:3:
-○:LDP man-pages:3.35:2008/07/10:fgetpwent:3:1997/12/18::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
-@:LDP man-pages:3.35:2010/10/21:fgetpwent_r:3:getpwent_r:3:
-@:LDP man-pages:3.35:2011/09/28:fgets:3:gets:3:
-@:LDP man-pages:3.35:2008/08/29:fgets_unlocked:3:unlocked_stdio:3:
-@:LDP man-pages:3.35:2010/02/25:fgetspent:3:getspnam:3:
-@:LDP man-pages:3.35:2010/02/25:fgetspent_r:3:getspnam:3:
-○:LDP man-pages:3.35:1999/07/25:fgetwc:3:2001/11/09::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.35:2008/08/29:fgetwc_unlocked:3:unlocked_stdio:3:
-○:LDP man-pages:3.35:2011/09/28:fgetws:3:2001/11/09::ysato@h4.dion.ne.jp:Yuichi SATO:
-@:LDP man-pages:3.35:2008/08/29:fgetws_unlocked:3:unlocked_stdio:3:
-@:LDP man-pages:3.35:2008/08/29:fileno:3:ferror:3:
-@:LDP man-pages:3.35:2008/08/29:fileno_unlocked:3:unlocked_stdio:3:
-○:LDP man-pages:3.35:2008/08/05:finite:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2008/08/05:finitef:3:finite:3:
-@:LDP man-pages:3.35:2008/08/05:finitel:3:finite:3:
-○:LDP man-pages:3.35:2008/08/29:flockfile:3:2001/11/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2010/09/20:floor:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:floorf:3:floor:3:
-@:LDP man-pages:3.35:2010/09/20:floorl:3:floor:3:
-○:LDP man-pages:3.35:2010/09/20:fma:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:fmaf:3:fma:3:
-@:LDP man-pages:3.35:2010/09/20:fmal:3:fma:3:
-○:LDP man-pages:3.35:2010/09/20:fmax:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:fmaxf:3:fmax:3:
-@:LDP man-pages:3.35:2010/09/20:fmaxl:3:fmax:3:
-○:LDP man-pages:3.35:2010/09/15:fmemopen:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2010/09/20:fmin:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:fminf:3:fmin:3:
-@:LDP man-pages:3.35:2010/09/20:fminl:3:fmin:3:
-○:LDP man-pages:3.35:2010/09/20:fmod:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:fmodf:3:fmod:3:
-@:LDP man-pages:3.35:2010/09/20:fmodl:3:fmod:3:
-○:LDP man-pages:3.35:2008/06/14:fmtmsg:3:2004/08/14::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.35:2000/10/15:fnmatch:3:2006/03/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2009/02/23:fopen:3:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-×:LDP man-pages:3.35:2008/12/05:fopencookie:3:::::
-@:LDP man-pages:3.35:2010/06/13:forkpty:3:openpty:3:
-○:LDP man-pages:3.35:1993/04/04:fpathconf:3:1998/03/20::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.35:2010/09/20:fpclassify:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2011/09/28:fprintf:3:printf:3:
-○:LDP man-pages:3.35:2001/12/15:fpurge:3:2002/01/14::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-@:LDP man-pages:3.35:2011/09/28:fputc:3:puts:3:
-@:LDP man-pages:3.35:2008/08/29:fputc_unlocked:3:unlocked_stdio:3:
-@:LDP man-pages:3.35:2011/09/28:fputs:3:puts:3:
-@:LDP man-pages:3.35:2008/08/29:fputs_unlocked:3:unlocked_stdio:3:
-○:LDP man-pages:3.35:1999/07/25:fputwc:3:2001/11/09::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.35:2008/08/29:fputwc_unlocked:3:unlocked_stdio:3:
-○:LDP man-pages:3.35:2011/09/28:fputws:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.35:2008/08/29:fputws_unlocked:3:unlocked_stdio:3:
-○:LDP man-pages:3.35:1996/05/17:fread:3:2001/11/09::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.35:2008/08/29:fread_unlocked:3:unlocked_stdio:3:
-@:LDP man-pages:3.35:2011/09/08:free:3:malloc:3:
-@:LDP man-pages:3.35:2010/09/27:freeaddrinfo:3:getaddrinfo:3:
-@:LDP man-pages:3.35:2010/09/04:freehostent:3:getipnodebyname:3:
-※:LDP man-pages:3.35:2010/10/06:freeifaddrs:3:getifaddrs:3:
-@:LDP man-pages:3.35:2009/02/23:freopen:3:fopen:3:
-○:LDP man-pages:3.35:2010/09/20:frexp:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:frexpf:3:frexp:3:
-@:LDP man-pages:3.35:2010/09/20:frexpl:3:frexp:3:
-@:LDP man-pages:3.35:2011/09/28:fscanf:3:scanf:3:
-○:LDP man-pages:3.35:1993/11/29:fseek:3:1998/04/27::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.35:2001/11/05:fseeko:3:2006/01/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:1993/11/29:fsetpos:3:fseek:3:
-@:LDP man-pages:3.35:2003/08/22:fstatvfs:3:statvfs:3:
-@:LDP man-pages:3.35:1993/11/29:ftell:3:fseek:3:
-@:LDP man-pages:3.35:2001/11/05:ftello:3:fseeko:3:
-○:LDP man-pages:3.35:2010/02/25:ftime:3:2008/10/08::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.35:2001/11/28:ftok:3:2002/01/06::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-@:LDP man-pages:3.35:2008/08/29:ftrylockfile:3:flockfile:3:
-○:LDP man-pages:3.35:2007/12/28:fts:3:2000/09/05::sato@complex.eng.hokudai.ac.jp:Yuichi SATO:
-@:LDP man-pages:3.35:2007/12/28:fts_children:3:fts:3:
-@:LDP man-pages:3.35:2007/12/28:fts_close:3:fts:3:
-@:LDP man-pages:3.35:2007/12/28:fts_open:3:fts:3:
-@:LDP man-pages:3.35:2007/12/28:fts_read:3:fts:3:
-@:LDP man-pages:3.35:2007/12/28:fts_set:3:fts:3:
-○:LDP man-pages:3.35:2010/09/20:ftw:3:2006/07/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2008/08/29:funlockfile:3:flockfile:3:
-※:LDP man-pages:3.35:2009/12/13:futimens:3:utimensat:2:
-○:LDP man-pages:3.35:2008/04/07:futimes:3:2006/07/31::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2011/09/17:fwide:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-@:LDP man-pages:3.35:2011/09/17:fwprintf:3:wprintf:3:
-@:LDP man-pages:3.35:1996/05/17:fwrite:3:fread:3:
-@:LDP man-pages:3.35:2008/08/29:fwrite_unlocked:3:unlocked_stdio:3:
-※:LDP man-pages:3.35:2010/09/27:gai_cancel:3:getaddrinfo_a:3:
-※:LDP man-pages:3.35:2010/09/27:gai_error:3:getaddrinfo_a:3:
-@:LDP man-pages:3.35:2010/09/27:gai_strerror:3:getaddrinfo:3:
-※:LDP man-pages:3.35:2010/09/27:gai_suspend:3:getaddrinfo_a:3:
-○:LDP man-pages:3.35:2008/08/05:gamma:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2008/08/05:gammaf:3:gamma:3:
-@:LDP man-pages:3.35:2008/08/05:gammal:3:gamma:3:
-○:LDP man-pages:3.35:2010/09/20:gcvt:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:get_current_dir_name:3:getcwd:3:
-@:LDP man-pages:3.35:2008/07/17:get_myaddress:3:rpc:3:
-○:LDP man-pages:3.35:2010/09/27:getaddrinfo:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-×:LDP man-pages:3.35:2010/09/27:getaddrinfo_a:3:::::
-@:LDP man-pages:3.35:2003/09/09:getaliasbyname:3:setaliasent:3:
-@:LDP man-pages:3.35:2003/09/09:getaliasbyname_r:3:setaliasent:3:
-@:LDP man-pages:3.35:2003/09/09:getaliasent:3:setaliasent:3:
-@:LDP man-pages:3.35:2003/09/09:getaliasent_r:3:setaliasent:3:
-@:LDP man-pages:3.35:2011/09/28:getc:3:gets:3:
-@:LDP man-pages:3.35:2008/08/29:getc_unlocked:3:unlocked_stdio:3:
-@:LDP man-pages:3.35:2011/09/28:getchar:3:gets:3:
-@:LDP man-pages:3.35:2008/08/29:getchar_unlocked:3:unlocked_stdio:3:
-○:LDP man-pages:3.35:2010/09/20:getcwd:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.35:2010/09/20:getdate:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:getdate_err:3:getdate:3:
-@:LDP man-pages:3.35:2010/09/20:getdate_r:3:getdate:3:
-@:LDP man-pages:3.35:2010/06/12:getdelim:3:getline:3:
-○:LDP man-pages:3.35:2007/07/26:getdirentries:3:1998/04/30::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.35:2008/03/17:getenv:3:2003/09/28::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.35:2002/02/28:getfsent:3:2002/08/07::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-@:LDP man-pages:3.35:2002/02/28:getfsfile:3:getfsent:3:
-@:LDP man-pages:3.35:2002/02/28:getfsspec:3:getfsent:3:
-○:LDP man-pages:3.35:2010/10/21:getgrent:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2010/10/21:getgrent_r:3:2004/08/14::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.35:2010/10/21:getgrgid:3:getgrnam:3:
-@:LDP man-pages:3.35:2010/10/21:getgrgid_r:3:getgrnam:3:
-☆:LDP man-pages:3.29=>3.35:2010/10/21:getgrnam:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/10/21:getgrnam_r:3:getgrnam:3:
-○:LDP man-pages:3.35:2008/07/03:getgrouplist:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/10/04:gethostbyaddr:3:gethostbyname:3:
-@:LDP man-pages:3.35:2010/10/04:gethostbyaddr_r:3:gethostbyname:3:
-○:LDP man-pages:3.35:2010/10/04:gethostbyname:3:2007/06/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/10/04:gethostbyname2:3:gethostbyname:3:
-@:LDP man-pages:3.35:2010/10/04:gethostbyname2_r:3:gethostbyname:3:
-@:LDP man-pages:3.35:2010/10/04:gethostbyname_r:3:gethostbyname:3:
-@:LDP man-pages:3.35:2010/10/04:gethostent:3:gethostbyname:3:
-@:LDP man-pages:3.35:2010/10/04:gethostent_r:3:gethostbyname:3:
-○:LDP man-pages:3.35:2010/09/20:gethostid:3:2009/01/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-×:LDP man-pages:3.35:2010/10/06:getifaddrs:3:::::
-@:LDP man-pages:3.35:2010/09/04:getipnodebyaddr:3:getipnodebyname:3:
-○:LDP man-pages:3.35:2010/09/04:getipnodebyname:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.35:2010/06/12:getline:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2007/12/08:getloadavg:3:2002/01/21::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.35:2008/06/29:getlogin:3:2005/03/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2008/06/29:getlogin_r:3:getlogin:3:
-○:LDP man-pages:3.35:2009/09/15:getmntent:3:2005/03/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2009/09/15:getmntent_r:3:getmntent:3:
-○:LDP man-pages:3.35:2009/12/03:getnameinfo:3:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2008/08/19:getnetbyaddr:3:getnetent:3:
-※:LDP man-pages:3.35:2010/09/10:getnetbyaddr_r:3:getnetent_r:3:
-@:LDP man-pages:3.35:2008/08/19:getnetbyname:3:getnetent:3:
-※:LDP man-pages:3.35:2010/09/10:getnetbyname_r:3:getnetent_r:3:
-○:LDP man-pages:3.35:2008/08/19:getnetent:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-×:LDP man-pages:3.35:2010/09/10:getnetent_r:3:::::
-@:LDP man-pages:3.35:2007/07/26:getnetgrent:3:setnetgrent:3:
-@:LDP man-pages:3.35:2007/07/26:getnetgrent_r:3:setnetgrent:3:
-○:LDP man-pages:3.35:2010/11/01:getopt:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/11/01:getopt_long:3:getopt:3:
-@:LDP man-pages:3.35:2010/11/01:getopt_long_only:3:getopt:3:
-○:LDP man-pages:3.35:2010/09/20:getpass:3:2001/02/14::nakano@apm.seikei.ac.jp:NAKANO Takeo:Older ver. is in obsolete/
-@:LDP man-pages:3.35:2008/08/19:getprotobyname:3:getprotoent:3:
-※:LDP man-pages:3.35:2010/09/10:getprotobyname_r:3:getprotoent_r:3:
-@:LDP man-pages:3.35:2008/08/19:getprotobynumber:3:getprotoent:3:
-※:LDP man-pages:3.35:2010/09/10:getprotobynumber_r:3:getprotoent_r:3:
-○:LDP man-pages:3.35:2008/08/19:getprotoent:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-×:LDP man-pages:3.35:2010/09/10:getprotoent_r:3:::::
-○:LDP man-pages:3.35:2010/09/10:getpt:3:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2010/10/21:getpw:3:2008/10/08::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.35:2010/10/21:getpwent:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2010/10/21:getpwent_r:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-☆:LDP man-pages:3.29=>3.35:2010/10/21:getpwnam:3:2005/10/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/10/21:getpwnam_r:3:getpwnam:3:
-@:LDP man-pages:3.35:2010/10/21:getpwuid:3:getpwnam:3:
-@:LDP man-pages:3.35:2010/10/21:getpwuid_r:3:getpwnam:3:
-@:LDP man-pages:3.35:2008/08/19:getrpcbyname:3:getrpcent:3:
-※:LDP man-pages:3.35:2010/09/10:getrpcbyname_r:3:getrpcent_r:3:
-@:LDP man-pages:3.35:2008/08/19:getrpcbynumber:3:getrpcent:3:
-※:LDP man-pages:3.35:2010/09/10:getrpcbynumber_r:3:getrpcent_r:3:
-○:LDP man-pages:3.35:2008/08/19:getrpcent:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-×:LDP man-pages:3.35:2010/09/10:getrpcent_r:3:::::
-○:LDP man-pages:3.35:1987/10/06:getrpcport:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-○:LDP man-pages:3.35:2011/09/28:gets:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2008/08/19:getservbyname:3:getservent:3:
-※:LDP man-pages:3.35:2010/09/10:getservbyname_r:3:getservent_r:3:
-@:LDP man-pages:3.35:2008/08/19:getservbyport:3:getservent:3:
-※:LDP man-pages:3.35:2010/09/10:getservbyport_r:3:getservent_r:3:
-○:LDP man-pages:3.35:2008/08/19:getservent:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-×:LDP man-pages:3.35:2010/09/10:getservent_r:3:::::
-@:LDP man-pages:3.35:2010/02/25:getspent:3:getspnam:3:
-@:LDP man-pages:3.35:2010/02/25:getspent_r:3:getspnam:3:
-○:LDP man-pages:3.35:2010/02/25:getspnam:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/02/25:getspnam_r:3:getspnam:3:
-○:LDP man-pages:3.35:2010/09/26:getsubopt:3:2007/06/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2002/07/18:getttyent:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.35:2002/07/18:getttynam:3:getttyent:3:
-○:LDP man-pages:3.35:2010/09/10:getumask:3:2003/02/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2007/07/26:getusershell:3:1998/02/05::ishioka@dad.eec.toshiba.co.jp:ISHIOKA Takashi:
-○:LDP man-pages:3.35:2008/06/29:getutent:3:2005/03/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2008/06/29:getutent_r:3:getutent:3:
-@:LDP man-pages:3.35:2008/06/29:getutid:3:getutent:3:
-@:LDP man-pages:3.35:2008/06/29:getutid_r:3:getutent:3:
-@:LDP man-pages:3.35:2008/06/29:getutline:3:getutent:3:
-@:LDP man-pages:3.35:2008/06/29:getutline_r:3:getutent:3:
-×:LDP man-pages:3.35:2010/09/10:getutmp:3:::::
-※:LDP man-pages:3.35:2010/09/10:getutmpx:3:getutmp:3:
-@:LDP man-pages:3.35:2008/06/29:getutxent:3:getutent:3:
-@:LDP man-pages:3.35:2008/06/29:getutxid:3:getutent:3:
-@:LDP man-pages:3.35:2008/06/29:getutxline:3:getutent:3:
-○:LDP man-pages:3.35:2010/09/26:getw:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.35:1999/07/25:getwc:3:fgetwc:3:
-@:LDP man-pages:3.35:2008/08/29:getwc_unlocked:3:unlocked_stdio:3:
-○:LDP man-pages:3.35:1999/07/25:getwchar:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.35:2008/08/29:getwchar_unlocked:3:unlocked_stdio:3:
-@:LDP man-pages:3.35:2010/09/20:getwd:3:getcwd:3:
-○:LDP man-pages:3.35:2007/10/10:glob:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.35:2007/10/10:globfree:3:glob:3:
-@:LDP man-pages:3.35:2010/02/25:gmtime:3:ctime:3:
-@:LDP man-pages:3.35:2010/02/25:gmtime_r:3:ctime:3:
-※:LDP man-pages:3.35:2010/09/10:gnu_dev_major:3:makedev:3:
-※:LDP man-pages:3.35:2010/09/10:gnu_dev_makedev:3:makedev:3:
-※:LDP man-pages:3.35:2010/09/10:gnu_dev_minor:3:makedev:3:
-@:LDP man-pages:3.35:2010/09/10:gnu_get_libc_release:3:gnu_get_libc_version:3:
-○:LDP man-pages:3.35:2010/09/10:gnu_get_libc_version:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2008/06/14:grantpt:3:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2007/07/26:gsignal:3:2003/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/10/04:h_errno:3:gethostbyname:3:
-○:LDP man-pages:3.35:1994/08/18:hash:3:1999/08/17::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-@:LDP man-pages:3.35:2009/09/15:hasmntopt:3:getmntent:3:
-@:LDP man-pages:3.35:2011/09/10:hcreate:3:hsearch:3:
-@:LDP man-pages:3.35:2011/09/10:hcreate_r:3:hsearch:3:
-@:LDP man-pages:3.35:2011/09/10:hdestroy:3:hsearch:3:
-@:LDP man-pages:3.35:2011/09/10:hdestroy_r:3:hsearch:3:
-@:LDP man-pages:3.35:2010/10/04:herror:3:gethostbyname:3:
-○:LDP man-pages:3.35:2011/09/10:hsearch:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2011/09/10:hsearch_r:3:hsearch:3:
-@:LDP man-pages:3.35:2010/10/04:hstrerror:3:gethostbyname:3:
-※:LDP man-pages:3.35:2010/09/10:htobe16:3:endian:3:
-※:LDP man-pages:3.35:2010/09/10:htobe32:3:endian:3:
-※:LDP man-pages:3.35:2010/09/10:htobe64:3:endian:3:
-※:LDP man-pages:3.35:2010/09/10:htole16:3:endian:3:
-※:LDP man-pages:3.35:2010/09/10:htole32:3:endian:3:
-※:LDP man-pages:3.35:2010/09/10:htole64:3:endian:3:
-@:LDP man-pages:3.35:2009/01/15:htonl:3:byteorder:3:
-@:LDP man-pages:3.35:2009/01/15:htons:3:byteorder:3:
-○:LDP man-pages:3.35:2010/09/20:hypot:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:hypotf:3:hypot:3:
-@:LDP man-pages:3.35:2010/09/20:hypotl:3:hypot:3:
-○:LDP man-pages:3.35:2008/09/08:iconv:3:2000/07/11::sato@complex.eng.hokudai.ac.jp:Yuichi SATO:
-○:LDP man-pages:3.35:2008/08/11:iconv_close:3:2000/07/11::sato@complex.eng.hokudai.ac.jp:Yuichi SATO:
-○:LDP man-pages:3.35:2008/08/11:iconv_open:3:2007/06/01::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2010/09/20:ilogb:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:ilogbf:3:ilogb:3:
-@:LDP man-pages:3.35:2010/09/20:ilogbl:3:ilogb:3:
-@:LDP man-pages:3.35:2010/09/20:imaxabs:3:abs:3:
-@:LDP man-pages:3.35:2010/09/20:imaxdiv:3:div:3:
-○:LDP man-pages:3.35:2011/09/21:index:3:1997/12/12::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
-○:LDP man-pages:3.35:2008/06/19:inet:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2008/06/19:inet_addr:3:inet:3:
-@:LDP man-pages:3.35:2008/06/19:inet_aton:3:inet:3:
-@:LDP man-pages:3.35:2008/06/19:inet_lnaof:3:inet:3:
-@:LDP man-pages:3.35:2008/06/19:inet_makeaddr:3:inet_addr:3:
-@:LDP man-pages:3.35:2008/06/19:inet_netof:3:inet:3:
-@:LDP man-pages:3.35:2008/06/19:inet_network:3:inet:3:
-@:LDP man-pages:3.35:2008/06/19:inet_ntoa:3:inet:3:
-○:LDP man-pages:3.35:2008/11/11:inet_ntop:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2008/06/18:inet_pton:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:1993/06/02:infnan:3:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.35:2007/07/26:initgroups:3:2005/02/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:initstate:3:random:3:
-@:LDP man-pages:3.35:2008/03/07:initstate_r:3:random_r:3:
-@:LDP man-pages:3.35:2007/07/26:innetgr:3:setnetgrent:3:
-☆:LDP man-pages:3.25=>3.35:2010/09/09:insque:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.35:2010/11/11:intro:3:2008/02/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2007/12/28:iruserok:3:rcmd:3:
-@:LDP man-pages:3.35:2010/09/20:isalnum:3:isalpha:3:
-○:LDP man-pages:3.35:2010/09/20:isalpha:3:2007/05/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:isascii:3:isalpha:3:
-○:LDP man-pages:3.35:2008/12/03:isatty:3:1997/2/10::nagoya@cc.hit-u.ac.jp:NAGOYA Hiroaki:
-@:LDP man-pages:3.35:2010/09/20:isblank:3:isalpha:3:
-@:LDP man-pages:3.35:2010/09/20:iscntrl:3:isalpha:3:
-@:LDP man-pages:3.35:2010/09/20:isdigit:3:isalpha:3:
-@:LDP man-pages:3.35:2010/09/20:isfinite:3:fpclassify:3:
-@:LDP man-pages:3.35:2010/09/20:isgraph:3:isalpha:3:
-○:LDP man-pages:3.35:2010/09/20:isgreater:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:isgreaterequal:3:isgreater:3:
-@:LDP man-pages:3.35:2010/09/20:isinf:3:fpclassify:3:
-@:LDP man-pages:3.35:2008/08/05:isinff:3:finite:3:
-@:LDP man-pages:3.35:2008/08/05:isinfl:3:finite:3:
-@:LDP man-pages:3.35:2010/09/20:isless:3:isgreater:3:
-@:LDP man-pages:3.35:2010/09/20:islessequal:3:isgreater:3:
-@:LDP man-pages:3.35:2010/09/20:islessgreater:3:isgreater:3:
-@:LDP man-pages:3.35:2010/09/20:islower:3:isalpha:3:
-@:LDP man-pages:3.35:2010/09/20:isnan:3:fpclassify:3:
-@:LDP man-pages:3.35:2008/08/05:isnanf:3:finite:3:
-@:LDP man-pages:3.35:2008/08/05:isnanl:3:finite:3:
-@:LDP man-pages:3.35:2010/09/20:isnormal:3:fpclassify:3:
-@:LDP man-pages:3.35:2010/09/20:isprint:3:isalpha:3:
-@:LDP man-pages:3.35:2010/09/20:ispunct:3:isalpha:3:
-@:LDP man-pages:3.35:2010/09/20:isspace:3:isalpha:3:
-@:LDP man-pages:3.35:2010/09/20:isunordered:3:isgreater:3:
-@:LDP man-pages:3.35:2010/09/20:isupper:3:isalpha:3:
-○:LDP man-pages:3.35:1999/07/25:iswalnum:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.35:1999/07/25:iswalpha:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.35:2010/09/20:iswblank:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.35:1999/07/25:iswcntrl:3:1999/09/12::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.35:1999/07/25:iswctype:3:1999/09/12::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.35:1999/07/25:iswdigit:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.35:1999/07/25:iswgraph:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.35:1999/07/25:iswlower:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.35:1999/07/25:iswprint:3:1999/09/12::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.35:1999/07/25:iswpunct:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.35:1999/07/25:iswspace:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.35:1999/07/25:iswupper:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.35:1999/07/25:iswxdigit:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.35:2010/09/20:isxdigit:3:isalpha:3:
-○:LDP man-pages:3.35:2010/09/20:j0:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:j0f:3:j0:3:
-@:LDP man-pages:3.35:2010/09/20:j0l:3:j0:3:
-@:LDP man-pages:3.35:2010/09/20:j1:3:j0:3:
-@:LDP man-pages:3.35:2010/09/20:j1f:3:j0:3:
-@:LDP man-pages:3.35:2010/09/20:j1l:3:j0:3:
-@:LDP man-pages:3.35:2010/09/20:jn:3:j0:3:
-@:LDP man-pages:3.35:2010/09/20:jnf:3:j0:3:
-@:LDP man-pages:3.35:2010/09/20:jnl:3:j0:3:
-@:LDP man-pages:3.35:2007/07/26:jrand48:3:drand48:3:
-@:LDP man-pages:3.35:2007/07/26:jrand48_r:3:drand48_r:3:
-@:LDP man-pages:3.35:2002/07/18:key_decryptsession:3:key_setsecret:3:
-@:LDP man-pages:3.35:2002/07/18:key_encryptsession:3:key_setsecret:3:
-@:LDP man-pages:3.35:2002/07/18:key_gendes:3:key_setsecret:3:
-@:LDP man-pages:3.35:2002/07/18:key_secretkey_is_set:3:key_setsecret:3:
-○:LDP man-pages:3.35:2002/07/18:key_setsecret:3:2003/02/01::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2011/09/07:klogctl:3:syslog:2:
-@:LDP man-pages:3.35:2010/09/20:l64a:3:a64l:3:
-@:LDP man-pages:3.35:2010/09/20:labs:3:abs:3:
-@:LDP man-pages:3.35:2010/02/25:lckpwdf:3:getspnam:3:
-@:LDP man-pages:3.35:2007/07/26:lcong48:3:drand48:3:
-@:LDP man-pages:3.35:2007/07/26:lcong48_r:3:drand48_r:3:
-○:LDP man-pages:3.35:2010/09/20:ldexp:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:ldexpf:3:ldexp:3:
-@:LDP man-pages:3.35:2010/09/20:ldexpl:3:ldexp:3:
-@:LDP man-pages:3.35:2010/09/20:ldiv:3:div:3:
-※:LDP man-pages:3.35:2010/09/10:le16toh:3:endian:3:
-※:LDP man-pages:3.35:2010/09/10:le32toh:3:endian:3:
-※:LDP man-pages:3.35:2010/09/10:le64toh:3:endian:3:
-@:LDP man-pages:3.35:1999/09/27:lfind:3:lsearch:3:
-○:LDP man-pages:3.35:2010/09/11:lgamma:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/11:lgamma_r:3:lgamma:3:
-@:LDP man-pages:3.35:2010/09/11:lgammaf:3:lgamma:3:
-@:LDP man-pages:3.35:2010/09/11:lgammaf_r:3:lgamma:3:
-@:LDP man-pages:3.35:2010/09/11:lgammal:3:lgamma:3:
-@:LDP man-pages:3.35:2010/09/11:lgammal_r:3:lgamma:3:
-×:LDP man-pages:3.35:2010/10/20:lio_listio:3:::::
-@:LDP man-pages:3.35:2010/09/20:llabs:3:abs:3:
-@:LDP man-pages:3.35:2010/09/20:lldiv:3:div:3:
-@:LDP man-pages:3.35:2010/09/20:llrint:3:lrint:3:
-@:LDP man-pages:3.35:2010/09/20:llrintf:3:lrint:3:
-@:LDP man-pages:3.35:2010/09/20:llrintl:3:lrint:3:
-@:LDP man-pages:3.35:2010/09/20:llround:3:lround:3:
-@:LDP man-pages:3.35:2010/09/20:llroundf:3:lround:3:
-@:LDP man-pages:3.35:2010/09/20:llroundl:3:lround:3:
-○:LDP man-pages:3.35:1993/04/25:localeconv:3:1998/05/25::tyoshino@eng.toyo.ac.jp:Takashi Yoshino:
-@:LDP man-pages:3.35:2010/02/25:localtime:3:ctime:3:
-@:LDP man-pages:3.35:2010/02/25:localtime_r:3:ctime:3:
-○:LDP man-pages:3.35:2011/09/11:lockf:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2010/09/20:log:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2010/09/20:log10:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:log10f:3:log10:3:
-@:LDP man-pages:3.35:2010/09/20:log10l:3:log10:3:
-○:LDP man-pages:3.35:2010/09/20:log1p:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:log1pf:3:log1p:3:
-@:LDP man-pages:3.35:2010/09/20:log1pl:3:log1p:3:
-○:LDP man-pages:3.35:2010/09/12:log2:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/12:log2f:3:log2:3:
-@:LDP man-pages:3.35:2010/09/12:log2l:3:log2:3:
-○:LDP man-pages:3.35:2010/09/20:logb:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:logbf:3:logb:3:
-@:LDP man-pages:3.35:2010/09/20:logbl:3:logb:3:
-@:LDP man-pages:3.35:2010/09/20:logf:3:log:3:
-○:LDP man-pages:3.35:2004/05/06:login:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.35:2010/06/13:login_tty:3:openpty:3:
-@:LDP man-pages:3.35:2010/09/20:logl:3:log:3:
-@:LDP man-pages:3.35:2004/05/06:logout:3:login:3:
-@:LDP man-pages:3.35:2008/07/02:logwtmp:3:updwtmp:3:
-○:LDP man-pages:3.35:2009/01/13:longjmp:3:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2007/07/26:lrand48:3:drand48:3:
-@:LDP man-pages:3.35:2007/07/26:lrand48_r:3:drand48_r:3:
-○:LDP man-pages:3.35:2010/09/20:lrint:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:lrintf:3:lrint:3:
-@:LDP man-pages:3.35:2010/09/20:lrintl:3:lrint:3:
-○:LDP man-pages:3.35:2010/09/20:lround:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:lroundf:3:lround:3:
-@:LDP man-pages:3.35:2010/09/20:lroundl:3:lround:3:
-○:LDP man-pages:3.35:1999/09/27:lsearch:3:2005/03/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2004/12/11:lseek64:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.35:2008/04/07:lutimes:3:futimes:3:
-※:LDP man-pages:3.35:2010/09/10:major:3:makedev:3:
-○:LDP man-pages:3.35:2009/03/31:makecontext:3:2008/12/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-×:LDP man-pages:3.35:2010/09/10:makedev:3:::::
-☆:LDP man-pages:3.25=>3.35:2011/09/08:malloc:3:2007/10/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-☆:LDP man-pages:3.25=>3.35:2010/10/13:malloc_hook:3:2003/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-×:LDP man-pages:3.35:2010/09/10:matherr:3:::::
-○:LDP man-pages:3.35:1999/07/25:mblen:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-○:LDP man-pages:3.35:1999/07/25:mbrlen:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-○:LDP man-pages:3.35:2011/09/28:mbrtowc:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.35:2000/11/20:mbsinit:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-○:LDP man-pages:3.35:2011/10/01:mbsnrtowcs:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-○:LDP man-pages:3.35:2011/09/28:mbsrtowcs:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-○:LDP man-pages:3.35:2011/09/28:mbstowcs:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-○:LDP man-pages:3.35:2011/09/28:mbtowc:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-@:LDP man-pages:3.35:2010/09/20:memalign:3:posix_memalign:3:
-○:LDP man-pages:3.35:2009/01/13:memccpy:3:1997/07/26::tyoshino@eng.toyo.ac.jp:Takashi Yoshino:
-○:LDP man-pages:3.35:2009/12/04:memchr:3:2004/01/17::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.35:2011/09/14:memcmp:3:1997/12/17::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
-○:LDP man-pages:3.35:2010/11/15:memcpy:3:1997/02/21::tyoshino@eng.toyo.ac.jp:Takashi Yoshino:
-○:LDP man-pages:3.35:2010/09/10:memfrob:3:1998/05/34::ishikawa@linux.or.jp:ISHIKAWA Mutsumi:
-○:LDP man-pages:3.35:2008/12/05:memmem:3:1997/12/17::tyoshino@eng.toyo.ac.jp:Takashi Yoshino:
-○:LDP man-pages:3.35:1993/04/10:memmove:3:2007/06/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2008/08/12:mempcpy:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.35:2009/12/04:memrchr:3:memchr:3:
-○:LDP man-pages:3.35:1993/04/11:memset:3:1997/02/21::tyoshino@eng.toyo.ac.jp:Takashi Yoshino:
-※:LDP man-pages:3.35:2010/09/10:minor:3:makedev:3:
-○:LDP man-pages:3.35:2010/09/26:mkdtemp:3:2001/11/09::ysato@h4.dion.ne.jp:Yuichi SATO:
-○:LDP man-pages:3.35:2008/06/12:mkfifo:3:2008/10/08::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.35:2009/12/13:mkfifoat:3:2006/08/19::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.35:2010/09/26:mkostemp:3:mkstemp:3:
-@:LDP man-pages:3.35:2010/09/26:mkostemps:3:mkstemp:3:
-☆:LDP man-pages:3.24=>3.35:2010/09/26:mkstemp:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/26:mkstemps:3:mkstemp:3:
-○:LDP man-pages:3.35:2010/09/20:mktemp:3:1999/04/10::tanisako@osa.dec.com:Kazuyuki Tanisako:
-@:LDP man-pages:3.35:2010/02/25:mktime:3:ctime:3:
-@:LDP man-pages:3.35:2008/04/22:mmap64:3:mmap2:2:
-○:LDP man-pages:3.35:2010/09/20:modf:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:modff:3:modf:3:
-@:LDP man-pages:3.35:2010/09/20:modfl:3:modf:3:
-○:LDP man-pages:3.35:1993/06/04:mpool:3:1999/08/19::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.35:2010/08/29:mq_close:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2010/08/29:mq_getattr:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2010/10/04:mq_notify:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2009/02/20:mq_open:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2010/09/20:mq_receive:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2010/09/20:mq_send:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/08/29:mq_setattr:3:mq_getattr:3:
-@:LDP man-pages:3.35:2010/09/20:mq_timedreceive:3:mq_receive:3:
-@:LDP man-pages:3.35:2010/09/20:mq_timedsend:3:mq_send:3:
-○:LDP man-pages:3.35:2010/08/29:mq_unlink:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2007/07/26:mrand48:3:drand48:3:
-@:LDP man-pages:3.35:2007/07/26:mrand48_r:3:drand48_r:3:
-○:LDP man-pages:3.35:2002/07/20:mtrace:3:2003/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2002/07/20:muntrace:3:mtrace:3:
-○:LDP man-pages:3.35:2010/09/20:nan:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:nanf:3:nan:3:
-@:LDP man-pages:3.35:2010/09/20:nanl:3:nan:3:
-@:LDP man-pages:3.35:2010/09/20:nearbyint:3:rint:3:
-@:LDP man-pages:3.35:2010/09/20:nearbyintf:3:rint:3:
-@:LDP man-pages:3.35:2010/09/20:nearbyintl:3:rint:3:
-○:LDP man-pages:3.35:1999/05/14:netlink:3:1999/08/20::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.35:2010/09/20:nextafter:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:nextafterf:3:nextafter:3:
-@:LDP man-pages:3.35:2010/09/20:nextafterl:3:nextafter:3:
-@:LDP man-pages:3.35:2010/09/20:nexttoward:3:nextafter:3:
-@:LDP man-pages:3.35:2010/09/20:nexttowardf:3:nextafter:3:
-@:LDP man-pages:3.35:2010/09/20:nexttowardl:3:nextafter:3:
-@:LDP man-pages:3.35:2010/09/20:nftw:3:ftw:3:
-○:LDP man-pages:3.35:2010/10/03:nl_langinfo:3:2001/07/15::KY4N-UCD@asahi-net.or.jp:UCHIDA Norihiro:
-@:LDP man-pages:3.35:2007/07/26:nrand48:3:drand48:3:
-@:LDP man-pages:3.35:2007/07/26:nrand48_r:3:drand48_r:3:
-@:LDP man-pages:3.35:2009/01/15:ntohl:3:byteorder:3:
-@:LDP man-pages:3.35:2009/01/15:ntohs:3:byteorder:3:
-○:LDP man-pages:3.35:2008/07/12:offsetof:3:2006/07/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2008/12/05:on_exit:3:2009/01/15:o:amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/15:open_memstream:3:fmemopen:3:
-@:LDP man-pages:3.35:2010/09/15:open_wmemstream:3:fmemopen:3:
-○:LDP man-pages:3.35:2010/06/20:opendir:3:2007/10/14:o:amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2008/11/12:openlog:3:syslog:3:
-○:LDP man-pages:3.35:2010/06/13:openpty:3:2006/02/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/11/01:optarg:3:getopt:3:
-@:LDP man-pages:3.35:2010/11/01:opterr:3:getopt:3:
-@:LDP man-pages:3.35:2010/11/01:optind:3:getopt:3:
-@:LDP man-pages:3.35:2010/11/01:optopt:3:getopt:3:
-@:LDP man-pages:3.35:2003/04/04:passwd2des:3:xcrypt:3:
-@:LDP man-pages:3.35:1993/04/04:pathconf:3:fpathconf:3:
-@:LDP man-pages:3.35:2010/02/03:pclose:3:popen:3:
-○:LDP man-pages:3.35:2007/07/26:perror:3:2005/03/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2008/07/17:pmap_getmaps:3:rpc:3:
-@:LDP man-pages:3.35:2008/07/17:pmap_getport:3:rpc:3:
-@:LDP man-pages:3.35:2008/07/17:pmap_rmtcall:3:rpc:3:
-@:LDP man-pages:3.35:2008/07/17:pmap_set:3:rpc:3:
-@:LDP man-pages:3.35:2008/07/17:pmap_unset:3:rpc:3:
-○:LDP man-pages:3.35:2010/02/03:popen:3:2008/11/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2010/09/20:posix_fallocate:3:2006/08/19::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.35:2010/09/20:posix_memalign:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2010/10/04:posix_openpt:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.35:2010/09/12:pow:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2008/08/11:pow10:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.35:2008/08/11:pow10f:3:pow10:3:
-@:LDP man-pages:3.35:2008/08/11:pow10l:3:pow10:3:
-@:LDP man-pages:3.35:2010/09/12:powf:3:pow:3:
-@:LDP man-pages:3.35:2010/09/12:powl:3:pow:3:
-○:LDP man-pages:3.35:2011/09/28:printf:3:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2007/07/26:profil:3:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.35:2006/04/29:program_invocation_name:3:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2006/04/29:program_invocation_short_name:3:program_invocation_name:3:
-@:LDP man-pages:3.35:2010/10/06:psiginfo:3:psignal:3:
-☆:LDP man-pages:3.25=>3.35:2010/10/06:psignal:3:1997/12/26::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
-※:LDP man-pages:3.35:2008/11/11:pthread_attr_destroy:3:pthread_attr_init:3:
-※:LDP man-pages:3.35:2010/09/10:pthread_attr_getaffinity_np:3:pthread_attr_setaffinity_np:3:
-※:LDP man-pages:3.35:2010/02/03:pthread_attr_getdetachstate:3:pthread_attr_setdetachstate:3:
-※:LDP man-pages:3.35:2008/10/24:pthread_attr_getguardsize:3:pthread_attr_setguardsize:3:
-※:LDP man-pages:3.35:2008/11/10:pthread_attr_getinheritsched:3:pthread_attr_setinheritsched:3:
-※:LDP man-pages:3.35:2010/02/03:pthread_attr_getschedparam:3:pthread_attr_setschedparam:3:
-※:LDP man-pages:3.35:2010/02/03:pthread_attr_getschedpolicy:3:pthread_attr_setschedpolicy:3:
-※:LDP man-pages:3.35:2008/10/24:pthread_attr_getscope:3:pthread_attr_setscope:3:
-※:LDP man-pages:3.35:2008/10/24:pthread_attr_getstack:3:pthread_attr_setstack:3:
-※:LDP man-pages:3.35:2008/10/24:pthread_attr_getstackaddr:3:pthread_attr_setstackaddr:3:
-※:LDP man-pages:3.35:2008/11/05:pthread_attr_getstacksize:3:pthread_attr_setstacksize:3:
-×:LDP man-pages:3.35:2008/11/11:pthread_attr_init:3:::::
-×:LDP man-pages:3.35:2010/09/10:pthread_attr_setaffinity_np:3:::::
-×:LDP man-pages:3.35:2010/02/03:pthread_attr_setdetachstate:3:::::
-×:LDP man-pages:3.35:2008/10/24:pthread_attr_setguardsize:3:::::
-×:LDP man-pages:3.35:2008/11/10:pthread_attr_setinheritsched:3:::::
-×:LDP man-pages:3.35:2010/02/03:pthread_attr_setschedparam:3:::::
-×:LDP man-pages:3.35:2010/02/03:pthread_attr_setschedpolicy:3:::::
-×:LDP man-pages:3.35:2008/10/24:pthread_attr_setscope:3:::::
-×:LDP man-pages:3.35:2008/10/24:pthread_attr_setstack:3:::::
-×:LDP man-pages:3.35:2008/10/24:pthread_attr_setstackaddr:3:::::
-×:LDP man-pages:3.35:2008/11/05:pthread_attr_setstacksize:3:::::
-×:LDP man-pages:3.35:2008/11/17:pthread_cancel:3:::::
-※:LDP man-pages:3.35:2008/11/24:pthread_cleanup_pop:3:pthread_cleanup_push:3:
-※:LDP man-pages:3.35:2008/12/04:pthread_cleanup_pop_restore_np:3:pthread_cleanup_push_defer_np:3:
-×:LDP man-pages:3.35:2008/11/24:pthread_cleanup_push:3:::::
-×:LDP man-pages:3.35:2008/12/04:pthread_cleanup_push_defer_np:3:::::
-×:LDP man-pages:3.35:2008/11/11:pthread_create:3:::::
-×:LDP man-pages:3.35:2008/11/27:pthread_detach:3:::::
-×:LDP man-pages:3.35:2009/03/30:pthread_equal:3:::::
-×:LDP man-pages:3.35:2009/03/30:pthread_exit:3:::::
-※:LDP man-pages:3.35:2010/09/10:pthread_getaffinity_np:3:pthread_setaffinity_np:3:
-×:LDP man-pages:3.35:2010/09/10:pthread_getattr_np:3:::::
-※:LDP man-pages:3.35:2009/04/10:pthread_getconcurrency:3:pthread_setconcurrency:3:
-×:LDP man-pages:3.35:2009/02/08:pthread_getcpuclockid:3:::::
-※:LDP man-pages:3.35:2008/11/17:pthread_getschedparam:3:pthread_setschedparam:3:
-×:LDP man-pages:3.35:2008/11/27:pthread_join:3:::::
-×:LDP man-pages:3.35:2009/01/28:pthread_kill:3:::::
-×:LDP man-pages:3.35:2010/09/09:pthread_kill_other_threads_np:3:::::
-×:LDP man-pages:3.35:2008/10/24:pthread_self:3:::::
-×:LDP man-pages:3.35:2010/09/10:pthread_setaffinity_np:3:::::
-×:LDP man-pages:3.35:2008/11/24:pthread_setcancelstate:3:::::
-※:LDP man-pages:3.35:2008/11/24:pthread_setcanceltype:3:pthread_setcancelstate:3:
-×:LDP man-pages:3.35:2009/04/10:pthread_setconcurrency:3:::::
-×:LDP man-pages:3.35:2008/11/17:pthread_setschedparam:3:::::
-×:LDP man-pages:3.35:2008/11/06:pthread_setschedprio:3:::::
-×:LDP man-pages:3.35:2009/01/25:pthread_sigmask:3:::::
-×:LDP man-pages:3.35:2011/09/23:pthread_sigqueue:3:::::
-×:LDP man-pages:3.35:2008/11/17:pthread_testcancel:3:::::
-※:LDP man-pages:3.35:2010/09/10:pthread_timedjoin_np:3:pthread_tryjoin_np:3:
-×:LDP man-pages:3.35:2010/09/10:pthread_tryjoin_np:3:::::
-×:LDP man-pages:3.35:2009/04/10:pthread_yield:3:::::
-○:LDP man-pages:3.35:2008/09/03:ptsname:3:2005/03/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2008/09/03:ptsname_r:3:ptsname:3:
-@:LDP man-pages:3.35:2011/09/28:putc:3:puts:3:
-@:LDP man-pages:3.35:2008/08/29:putc_unlocked:3:unlocked_stdio:3:
-@:LDP man-pages:3.35:2011/09/28:putchar:3:puts:3:
-@:LDP man-pages:3.35:2008/08/29:putchar_unlocked:3:unlocked_stdio:3:
-○:LDP man-pages:3.35:2007/07/26:putenv:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.35:2003/09/09:putgrent:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.35:2007/07/26:putpwent:3:1997/12/18::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
-○:LDP man-pages:3.35:2011/09/28:puts:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.35:2010/02/25:putspent:3:getspnam:3:
-@:LDP man-pages:3.35:2008/06/29:pututline:3:getutent:3:
-@:LDP man-pages:3.35:2008/06/29:pututxline:3:getutent:3:
-@:LDP man-pages:3.35:2010/09/26:putw:3:getw:3:
-@:LDP man-pages:3.35:1999/07/25:putwc:3:fputwc:3:
-@:LDP man-pages:3.35:2008/08/29:putwc_unlocked:3:unlocked_stdio:3:
-○:LDP man-pages:3.35:1999/07/25:putwchar:3:2001/11/09::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.35:2008/08/29:putwchar_unlocked:3:unlocked_stdio:3:
-○:LDP man-pages:3.35:2010/09/20:qecvt:3:2002/09/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2007/07/26:qecvt_r:3:ecvt_r:3:
-@:LDP man-pages:3.35:2010/09/20:qfcvt:3:qecvt:3:
-@:LDP man-pages:3.35:2007/07/26:qfcvt_r:3:ecvt_r:3:
-@:LDP man-pages:3.35:2010/09/20:qgcvt:3:qecvt:3:
-○:LDP man-pages:3.35:2009/09/15:qsort:3:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2007/12/28:queue:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.35:2008/10/17:raise:3:1997/12/25::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
-☆:LDP man-pages:3.25=>3.35:2010/10/01:rand:3:2005/03/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/10/01:rand_r:3:rand:3:
-○:LDP man-pages:3.35:2010/09/20:random:3:1997/01/21::tyoshino@eng.toyo.ac.jp:YOSHINO Takashi:
-○:LDP man-pages:3.35:2008/03/07:random_r:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2009/12/04:rawmemchr:3:memchr:3:
-○:LDP man-pages:3.35:2007/12/28:rcmd:3:1999/03/01::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.35:1995/07/14:re_comp:3:1997/12/18::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
-@:LDP man-pages:3.35:1995/07/14:re_exec:3:re_comp:3:
-○:LDP man-pages:3.35:2010/09/10:readdir:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/10:readdir_r:3:readdir:3:
-@:LDP man-pages:3.35:2011/09/08:realloc:3:malloc:3:
-○:LDP man-pages:3.35:2011/09/10:realpath:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:1994/08/18:recno:3:1999/08/19::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-@:LDP man-pages:3.35:2011/09/27:regcomp:3:regex:3:
-@:LDP man-pages:3.35:2011/09/27:regerror:3:regex:3:
-○:LDP man-pages:3.35:2011/09/27:regex:3:2005/03/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2011/09/27:regexec:3:regex:3:
-@:LDP man-pages:3.35:2011/09/27:regfree:3:regex:3:
-@:LDP man-pages:3.35:2008/07/17:registerrpc:3:rpc:3:
-○:LDP man-pages:3.35:2010/09/20:remainder:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:remainderf:3:remainder:3:
-@:LDP man-pages:3.35:2010/09/20:remainderl:3:remainder:3:
-○:LDP man-pages:3.35:2008/12/03:remove:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.35:2010/09/09:remque:3:insque:3:
-○:LDP man-pages:3.35:2010/09/20:remquo:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:remquof:3:remquo:3:
-@:LDP man-pages:3.35:2010/09/20:remquol:3:remquo:3:
-@:LDP man-pages:3.35:2010/06/17:res_init:3:resolver:3:
-@:LDP man-pages:3.35:2010/06/17:res_mkquery:3:resolver:3:
-@:LDP man-pages:3.35:2010/06/17:res_query:3:resolver:3:
-@:LDP man-pages:3.35:2010/06/17:res_querydomain:3:resolver:3:
-@:LDP man-pages:3.35:2010/06/17:res_search:3:resolver:3:
-@:LDP man-pages:3.35:2010/06/17:res_send:3:resolver:3:
-○:LDP man-pages:3.35:2010/06/17:resolver:3:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.35:1993/11/29:rewind:3:fseek:3:
-○:LDP man-pages:3.35:1995/06/11:rewinddir:3:1997/12/24::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
-○:LDP man-pages:3.35:2010/09/10:rexec:3:2005/12/28::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2011/09/21:rindex:3:index:3:
-○:LDP man-pages:3.35:2010/09/20:rint:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:rintf:3:rint:3:
-@:LDP man-pages:3.35:2010/09/20:rintl:3:rint:3:
-○:LDP man-pages:3.35:2010/09/20:round:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:roundf:3:round:3:
-@:LDP man-pages:3.35:2010/09/20:roundl:3:round:3:
-○:LDP man-pages:3.35:2008/07/17:rpc:3:2001/11/09::ysato@h4.dion.ne.jp:Yuichi SATO:
-○:LDP man-pages:3.35:2007/07/26:rpmatch:3:2006/07/31::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2007/12/28:rresvport:3:rcmd:3:
-○:LDP man-pages:3.35:2010/02/25:rtime:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.35:2010/01/11:rtnetlink:3:1999/08/20::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-@:LDP man-pages:3.35:2007/12/28:ruserok:3:rcmd:3:
-○:LDP man-pages:3.35:2010/09/20:scalb:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:scalbf:3:scalb:3:
-@:LDP man-pages:3.35:2010/09/20:scalbl:3:scalb:3:
-×:LDP man-pages:3.35:2010/09/20:scalbln:3:::::
-※:LDP man-pages:3.35:2010/09/20:scalblnf:3:scalbln:3:
-※:LDP man-pages:3.35:2010/09/20:scalblnl:3:scalbln:3:
-※:LDP man-pages:3.35:2010/09/20:scalbn:3:scalbln:3:
-※:LDP man-pages:3.35:2010/09/20:scalbnf:3:scalbln:3:
-※:LDP man-pages:3.35:2010/09/20:scalbnl:3:scalbln:3:
-○:LDP man-pages:3.35:2011/09/08:scandir:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2011/09/28:scanf:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2010/10/31:sched_getcpu:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2007/07/26:seed48:3:drand48:3:
-@:LDP man-pages:3.35:2007/07/26:seed48_r:3:drand48_r:3:
-○:LDP man-pages:3.35:2009/03/11:seekdir:3:1997/12/24::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
-○:LDP man-pages:3.35:2006/03/25:sem_close:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2006/03/25:sem_destroy:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2006/03/25:sem_getvalue:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2008/07/27:sem_init:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2009/02/20:sem_open:3:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2009/03/30:sem_post:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/02/25:sem_timedwait:3:sem_wait:3:
-@:LDP man-pages:3.35:2010/02/25:sem_trywait:3:sem_wait:3:
-○:LDP man-pages:3.35:2006/03/25:sem_unlink:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2010/02/25:sem_wait:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2003/09/09:setaliasent:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.35:2008/06/26:setbuf:3:2001/07/14::ysato@h4.dion.ne.jp:Yuichi SATO:
-@:LDP man-pages:3.35:2008/06/26:setbuffer:3:setbuf:3:
-○:LDP man-pages:3.35:2009/09/20:setenv:3:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.35:2002/02/28:setfsent:3:getfsent:3:
-@:LDP man-pages:3.35:2010/10/21:setgrent:3:getgrent:3:
-@:LDP man-pages:3.35:2010/10/04:sethostent:3:gethostbyname:3:
-@:LDP man-pages:3.35:2010/09/20:sethostid:3:gethostid:3:
-○:LDP man-pages:3.35:2009/06/26:setjmp:3:2009/03/05::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.35:2003/04/04:setkey:3:encrypt:3:
-@:LDP man-pages:3.35:2003/04/04:setkey_r:3:encrypt:3:
-@:LDP man-pages:3.35:2008/06/26:setlinebuf:3:setbuf:3:
-○:LDP man-pages:3.35:2008/12/05:setlocale:3:2002/10/12::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.35:2001/10/05:setlogmask:3:2001/11/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2009/09/15:setmntent:3:getmntent:3:
-@:LDP man-pages:3.35:2008/08/19:setnetent:3:getnetent:3:
-○:LDP man-pages:3.35:2007/07/26:setnetgrent:3:2005/03/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2008/08/19:setprotoent:3:getprotoent:3:
-@:LDP man-pages:3.35:2010/10/21:setpwent:3:getpwent:3:
-@:LDP man-pages:3.35:2008/08/19:setrpcent:3:getrpcent:3:
-@:LDP man-pages:3.35:2008/08/19:setservent:3:getservent:3:
-@:LDP man-pages:3.35:2010/02/25:setspent:3:getspnam:3:
-@:LDP man-pages:3.35:2010/09/20:setstate:3:random:3:
-@:LDP man-pages:3.35:2008/03/07:setstate_r:3:random_r:3:
-@:LDP man-pages:3.35:2002/07/18:setttyent:3:getttyent:3:
-@:LDP man-pages:3.35:2007/07/26:setusershell:3:getusershell:3:
-@:LDP man-pages:3.35:2008/06/29:setutent:3:getutent:3:
-@:LDP man-pages:3.35:2008/06/29:setutxent:3:getutent:3:
-@:LDP man-pages:3.35:2008/06/26:setvbuf:3:setbuf:3:
-@:LDP man-pages:3.35:2010/02/25:sgetspent:3:getspnam:3:
-@:LDP man-pages:3.35:2010/02/25:sgetspent_r:3:getspnam:3:
-○:LDP man-pages:3.35:2009/02/25:shm_open:3:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2009/02/25:shm_unlink:3:shm_open:3:
-@:LDP man-pages:3.35:2008/09/01:sigaddset:3:sigsetops:3:
-@:LDP man-pages:3.35:2008/09/01:sigandset:3:sigsetops:3:
-@:LDP man-pages:3.35:2007/07/26:sigblock:3:sigvec:3:
-@:LDP man-pages:3.35:2008/09/01:sigdelset:3:sigsetops:3:
-@:LDP man-pages:3.35:2008/09/01:sigemptyset:3:sigsetops:3:
-@:LDP man-pages:3.35:2008/09/01:sigfillset:3:sigsetops:3:
-@:LDP man-pages:3.35:2007/07/26:siggetmask:3:sigvec:3:
-@:LDP man-pages:3.35:2010/09/20:sighold:3:sigset:3:
-@:LDP man-pages:3.35:2010/09/20:sigignore:3:sigset:3:
-○:LDP man-pages:3.35:2011/09/09:siginterrupt:3:1998/05/24::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-@:LDP man-pages:3.35:2008/09/01:sigisemptyset:3:sigsetops:3:
-@:LDP man-pages:3.35:2008/09/01:sigismember:3:sigsetops:3:
-@:LDP man-pages:3.35:2009/01/13:siglongjmp:3:longjmp:3:
-@:LDP man-pages:3.35:2007/07/26:sigmask:3:sigvec:3:
-○:LDP man-pages:3.35:2010/09/20:signbit:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/11:signgam:3:lgamma:3:
-○:LDP man-pages:3.35:2009/02/04:significand:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.35:2009/02/04:significandf:3:significand:3:
-@:LDP man-pages:3.35:2009/02/04:significandl:3:significand:3:
-@:LDP man-pages:3.35:2008/09/01:sigorset:3:sigsetops:3:
-○:LDP man-pages:3.35:2010/09/12:sigpause:3:2005/12/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2007/07/26:sigqueue:3:2007/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:sigrelse:3:sigset:3:
-○:LDP man-pages:3.35:2010/09/20:sigset:3:2005/12/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2009/06/26:sigsetjmp:3:setjmp:3:
-@:LDP man-pages:3.35:2007/07/26:sigsetmask:3:sigvec:3:
-○:LDP man-pages:3.35:2008/09/01:sigsetops:3:2005/12/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/26:sigstack:3:sigaltstack:2:
-○:LDP man-pages:3.35:2007/07/26:sigvec:3:2005/12/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2010/09/10:sigwait:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2010/09/11:sin:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2008/08/11:sincos:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2008/08/11:sincosf:3:sincos:3:
-@:LDP man-pages:3.35:2008/08/11:sincosl:3:sincos:3:
-@:LDP man-pages:3.35:2010/09/11:sinf:3:sin:3:
-○:LDP man-pages:3.35:2010/09/20:sinh:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:sinhf:3:sinh:3:
-@:LDP man-pages:3.35:2010/09/20:sinhl:3:sinh:3:
-@:LDP man-pages:3.35:2010/09/11:sinl:3:sin:3:
-○:LDP man-pages:3.35:2010/02/03:sleep:3:1997/01/21::tyoshino@eng.toyo.ac.jp:YOSHINO Takashi:
-@:LDP man-pages:3.35:2011/09/28:snprintf:3:printf:3:
-○:LDP man-pages:3.35:2008/12/03:sockatmark:3:2006/08/19::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.35:2011/09/28:sprintf:3:printf:3:
-○:LDP man-pages:3.35:2010/09/20:sqrt:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:sqrtf:3:sqrt:3:
-@:LDP man-pages:3.35:2010/09/20:sqrtl:3:sqrt:3:
-@:LDP man-pages:3.35:2010/10/01:srand:3:rand:3:
-@:LDP man-pages:3.35:2007/07/26:srand48:3:drand48:3:
-@:LDP man-pages:3.35:2007/07/26:srand48_r:3:drand48_r:3:
-@:LDP man-pages:3.35:2010/09/20:srandom:3:random:3:
-@:LDP man-pages:3.35:2008/03/07:srandom_r:3:random_r:3:
-@:LDP man-pages:3.35:2011/09/28:sscanf:3:scanf:3:
-@:LDP man-pages:3.35:2007/07/26:ssignal:3:gsignal:3:
-○:LDP man-pages:3.35:2003/08/22:statvfs:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.35:2001/10/14:stdarg:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.35:2008/07/14:stderr:3:stdin:3:
-○:LDP man-pages:3.35:2008/07/14:stdin:3:2005/09/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2001/12/26:stdio:3:2004/02/06::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.35:2001/12/16:stdio_ext:3:2002/08/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2008/07/14:stdout:3:stdin:3:
-○:LDP man-pages:3.35:2011/09/28:stpcpy:3:1997/12/26::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
-○:LDP man-pages:3.35:2011/09/28:stpncpy:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-○:LDP man-pages:3.35:2010/09/20:strcasecmp:3:1997/12/25::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
-@:LDP man-pages:3.35:2011/09/28:strcasestr:3:strstr:3:
-○:LDP man-pages:3.35:2011/09/28:strcat:3:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.35:2010/09/20:strchr:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:strchrnul:3:strchr:3:
-○:LDP man-pages:3.35:2010/09/20:strcmp:3:2001/10/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2010/09/20:strcoll:3:2007/06/01::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2010/09/20:strcpy:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.35:2010/09/20:strcspn:3:strspn:3:
-○:LDP man-pages:3.35:2011/10/01:strdup:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.35:2011/10/01:strdupa:3:strdup:3:
-○:LDP man-pages:3.35:2009/03/30:strerror:3:2005/12/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2009/03/30:strerror_r:3:strerror:3:
-○:LDP man-pages:3.35:2000/12/05:strfmon:3:2001/02/14::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.35:2010/09/20:strfry:3:1998/05/25::motoki@hal.t.u-tokyo.ac.jp:Akihiro Motoki:
-○:LDP man-pages:3.35:2010/01/17:strftime:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2010/02/25:string:3:1997/01/20::yoshino@civil.jcn.nihon-u.ac.jp:YOSHINO Takashi:
-○:LDP man-pages:3.35:2011/09/28:strlen:3:1997/01/20::tyoshino@eng.toyo.ac.jp:YOSHINO Takashi:
-@:LDP man-pages:3.35:2010/09/20:strncasecmp:3:strcasecmp:3:
-@:LDP man-pages:3.35:2011/09/28:strncat:3:strcat:3:
-@:LDP man-pages:3.35:2010/09/20:strncmp:3:strcmp:3:
-@:LDP man-pages:3.35:2010/09/20:strncpy:3:strcpy:3:
-@:LDP man-pages:3.35:2011/10/01:strndup:3:strdup:3:
-@:LDP man-pages:3.35:2011/10/01:strndupa:3:strdup:3:
-○:LDP man-pages:3.35:2011/09/28:strnlen:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-○:LDP man-pages:3.35:2010/09/20:strpbrk:3:1999/12/25::argrath@yo.rim.or.jp:Kentaro Shirakata:
-○:LDP man-pages:3.35:2009/12/05:strptime:3:2002/01/14::ysato@h4.dion.ne.jp:Yuichi SATO:
-@:LDP man-pages:3.35:2010/09/20:strrchr:3:strchr:3:
-○:LDP man-pages:3.35:2011/09/28:strsep:3:2009/03/05::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.35:2010/09/15:strsignal:3:1999/12/25::argrath@yo.rim.or.jp:Kentaro Shirakata:
-○:LDP man-pages:3.35:2010/09/20:strspn:3:1997/12/16::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
-○:LDP man-pages:3.35:2011/09/28:strstr:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.35:2010/09/20:strtod:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:strtof:3:strtod:3:
-○:LDP man-pages:3.35:2003/11/28:strtoimax:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.35:2010/09/27:strtok:3:2005/11/19:o:amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/27:strtok_r:3:strtok:3:
-○:LDP man-pages:3.35:2010/09/20:strtol:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:strtold:3:strtod:3:
-@:LDP man-pages:3.35:2010/09/20:strtoll:3:strtol:3:
-@:LDP man-pages:3.35:2010/09/20:strtoq:3:strtol:3:
-○:LDP man-pages:3.35:2011/09/15:strtoul:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2011/09/15:strtoull:3:strtoul:3:
-@:LDP man-pages:3.35:2003/11/28:strtoumax:3:strtoimax:3:
-@:LDP man-pages:3.35:2011/09/15:strtouq:3:strtoul:3:
-○:LDP man-pages:3.35:2001/12/19:strverscmp:3:2002/09/22::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2011/09/28:strxfrm:3:1999/03/24::ss236rx@ymg.urban.ne.jp:Shouichi Saito:
-@:LDP man-pages:3.35:2008/07/17:svc_destroy:3:rpc:3:
-@:LDP man-pages:3.35:2008/07/17:svc_freeargs:3:rpc:3:
-@:LDP man-pages:3.35:2008/07/17:svc_getargs:3:rpc:3:
-@:LDP man-pages:3.35:2008/07/17:svc_getcaller:3:rpc:3:
-@:LDP man-pages:3.35:2008/07/17:svc_getreq:3:rpc:3:
-@:LDP man-pages:3.35:2008/07/17:svc_getreqset:3:rpc:3:
-@:LDP man-pages:3.35:2008/07/17:svc_register:3:rpc:3:
-@:LDP man-pages:3.35:2008/07/17:svc_run:3:rpc:3:
-@:LDP man-pages:3.35:2008/07/17:svc_sendreply:3:rpc:3:
-@:LDP man-pages:3.35:2008/07/17:svc_unregister:3:rpc:3:
-@:LDP man-pages:3.35:2008/07/17:svcerr_auth:3:rpc:3:
-@:LDP man-pages:3.35:2008/07/17:svcerr_decode:3:rpc:3:
-@:LDP man-pages:3.35:2008/07/17:svcerr_noproc:3:rpc:3:
-@:LDP man-pages:3.35:2008/07/17:svcerr_noprog:3:rpc:3:
-@:LDP man-pages:3.35:2008/07/17:svcerr_progvers:3:rpc:3:
-@:LDP man-pages:3.35:2008/07/17:svcerr_systemerr:3:rpc:3:
-@:LDP man-pages:3.35:2008/07/17:svcerr_weakauth:3:rpc:3:
-@:LDP man-pages:3.35:2008/07/17:svcfd_create:3:rpc:3:
-@:LDP man-pages:3.35:2008/07/17:svcraw_create:3:rpc:3:
-@:LDP man-pages:3.35:2008/07/17:svctcp_create:3:rpc:3:
-@:LDP man-pages:3.35:2008/07/17:svcudp_bufcreate:3:rpc:3:
-@:LDP man-pages:3.35:2008/07/17:svcudp_create:3:rpc:3:
-○:LDP man-pages:3.35:2001/12/15:swab:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.35:2009/03/31:swapcontext:3:makecontext:3:
-@:LDP man-pages:3.35:2011/09/17:swprintf:3:wprintf:3:
-@:LDP man-pages:3.35:2007/07/26:sys_errlist:3:perror:3:
-@:LDP man-pages:3.35:2007/07/26:sys_nerr:3:perror:3:
-○:LDP man-pages:3.35:2007/12/12:sysconf:3:2005/03/31::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2008/11/12:syslog:3:2008/07/24:o:argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.35:2010/09/10:system:3:2005/03/12:o:amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2007/05/04:sysv_signal:3:2007/06/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2010/09/11:tan:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/11:tanf:3:tan:3:
-○:LDP man-pages:3.35:2010/09/20:tanh:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:tanhf:3:tanh:3:
-@:LDP man-pages:3.35:2010/09/20:tanhl:3:tanh:3:
-@:LDP man-pages:3.35:2010/09/11:tanl:3:tan:3:
-@:LDP man-pages:3.35:2011/09/08:tcdrain:3:termios:3:
-@:LDP man-pages:3.35:2011/09/08:tcflow:3:termios:3:
-@:LDP man-pages:3.35:2011/09/08:tcflush:3:termios:3:
-@:LDP man-pages:3.35:2011/09/08:tcgetattr:3:termios:3:
-○:LDP man-pages:3.35:2003/01/28:tcgetpgrp:3:2003/08/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2010/09/10:tcgetsid:3:2003/08/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2011/09/08:tcsendbreak:3:termios:3:
-@:LDP man-pages:3.35:2011/09/08:tcsetattr:3:termios:3:
-@:LDP man-pages:3.35:2003/01/28:tcsetpgrp:3:tcgetpgrp:3:
-@:LDP man-pages:3.35:2008/09/23:tdelete:3:tsearch:3:
-@:LDP man-pages:3.35:2008/09/23:tdestroy:3:tsearch:3:
-○:LDP man-pages:3.35:2009/03/11:telldir:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2007/07/26:tempnam:3:2006/07/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-☆:LDP man-pages:3.32=>3.35:2011/09/08:termios:3:2007/05/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2008/09/23:tfind:3:tsearch:3:
-○:LDP man-pages:3.35:2010/09/20:tgamma:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:tgammaf:3:tgamma:3:
-@:LDP man-pages:3.35:2010/09/20:tgammal:3:tgamma:3:
-○:LDP man-pages:3.35:2007/07/26:timegm:3:2002/01/14::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-@:LDP man-pages:3.35:2007/07/26:timelocal:3:timegm:3:
-○:LDP man-pages:3.35:2010/02/25:timeradd:3:2007/10/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/02/25:timerclear:3:timeradd:3:
-@:LDP man-pages:3.35:2010/02/25:timercmp:3:timeradd:3:
-@:LDP man-pages:3.35:2010/02/25:timerisset:3:timeradd:3:
-@:LDP man-pages:3.35:2010/02/25:timersub:3:timeradd:3:
-@:LDP man-pages:3.35:2010/02/25:timezone:3:tzset:3:
-○:LDP man-pages:3.35:2008/07/14:tmpfile:3:2001/12/14:o:ysato@h4.dion.ne.jp:Yuichi SATO:
-○:LDP man-pages:3.35:2010/09/10:tmpnam:3:2006/07/26:o:amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/10:tmpnam_r:3:tmpnam:3:
-○:LDP man-pages:3.35:2009/03/15:toascii:3:1997/12/16::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
-@:LDP man-pages:3.35:1993/04/04:tolower:3:toupper:3:
-○:LDP man-pages:3.35:1993/04/04:toupper:3:1997/04/29::rui@linux.or.jp:Ueyama Rui:
-○:LDP man-pages:3.35:1999/07/25:towctrans:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.35:1999/07/25:towlower:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.35:1999/07/25:towupper:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.35:2010/09/20:trunc:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/09/20:truncf:3:trunc:3:
-@:LDP man-pages:3.35:2010/09/20:truncl:3:trunc:3:
-○:LDP man-pages:3.35:2008/09/23:tsearch:3:2002/02/14::ysato@h4.dion.ne.jp:Yuichi SATO:
-○:LDP man-pages:3.35:2008/07/14:ttyname:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.35:2008/07/14:ttyname_r:3:ttyname:3:
-○:LDP man-pages:3.35:2010/09/20:ttyslot:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.35:2008/09/23:twalk:3:tsearch:3:
-@:LDP man-pages:3.35:2010/02/25:tzname:3:tzset:3:
-○:LDP man-pages:3.35:2010/02/25:tzset:3:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2010/09/20:ualarm:3:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/02/25:ulckpwdf:3:getspnam:3:
-○:LDP man-pages:3.35:2008/08/06:ulimit:3:1998/12/06::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.35:2010/02/10:undocumented:3:2005/02/21::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2011/09/28:ungetc:3:gets:3:
-○:LDP man-pages:3.35:1999/09/19:ungetwc:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-○:LDP man-pages:3.35:2008/08/29:unlocked_stdio:3:2001/11/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2008/06/14:unlockpt:3:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2009/09/20:unsetenv:3:setenv:3:
-○:LDP man-pages:3.35:2008/07/02:updwtmp:3:2008/10/08::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.35:2008/07/02:updwtmpx:3:updwtmp:3:
-○:LDP man-pages:3.35:2010/12/03:usleep:3:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2008/06/29:utmpname:3:getutent:3:
-@:LDP man-pages:3.35:2008/06/29:utmpxname:3:getutent:3:
-@:LDP man-pages:3.35:2001/10/14:va_arg:3:stdarg:3:
-@:LDP man-pages:3.35:2001/10/14:va_copy:3:stdarg:3:
-@:LDP man-pages:3.35:2001/10/14:va_end:3:stdarg:3:
-@:LDP man-pages:3.35:2001/10/14:va_start:3:stdarg:3:
-@:LDP man-pages:3.35:2010/09/20:valloc:3:posix_memalign:3:
-@:LDP man-pages:3.35:2001/12/18:vasprintf:3:asprintf:3:
-@:LDP man-pages:3.35:2010/09/15:vdprintf:3:dprintf:3:
-@:LDP man-pages:3.35:2011/09/15:verr:3:err:3:
-@:LDP man-pages:3.35:2011/09/15:verrx:3:err:3:
-@:LDP man-pages:3.35:2011/09/08:versionsort:3:scandir:3:
-@:LDP man-pages:3.35:2011/09/28:vfprintf:3:printf:3:
-@:LDP man-pages:3.35:2011/09/28:vfscanf:3:scanf:3:
-@:LDP man-pages:3.35:2011/09/17:vfwprintf:3:wprintf:3:
-@:LDP man-pages:3.35:2011/09/10:vlimit:3:getrlimit:2:
-@:LDP man-pages:3.35:2011/09/28:vprintf:3:printf:3:
-@:LDP man-pages:3.35:2011/09/28:vscanf:3:scanf:3:
-@:LDP man-pages:3.35:2011/09/28:vsnprintf:3:printf:3:
-@:LDP man-pages:3.35:2011/09/28:vsprintf:3:printf:3:
-@:LDP man-pages:3.35:2011/09/28:vsscanf:3:scanf:3:
-@:LDP man-pages:3.35:2011/09/17:vswprintf:3:wprintf:3:
-@:LDP man-pages:3.35:2008/11/12:vsyslog:3:syslog:3:
-@:LDP man-pages:3.35:2010/09/26:vtimes:3:getrusage:2:
-@:LDP man-pages:3.35:2011/09/15:vwarn:3:err:3:
-@:LDP man-pages:3.35:2011/09/15:vwarnx:3:err:3:
-@:LDP man-pages:3.35:2011/09/17:vwprintf:3:wprintf:3:
-@:LDP man-pages:3.35:2011/09/15:warn:3:err:3:
-@:LDP man-pages:3.35:2011/09/15:warnx:3:err:3:
-○:LDP man-pages:3.35:2011/10/01:wcpcpy:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.35:2011/10/01:wcpncpy:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.35:2011/09/28:wcrtomb:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.35:2010/09/15:wcscasecmp:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.35:2011/09/28:wcscat:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.35:1999/07/25:wcschr:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.35:1999/07/25:wcscmp:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.35:2011/09/28:wcscpy:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.35:1999/07/25:wcscspn:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.35:2010/09/15:wcsdup:3:2004/06/13::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.35:2011/09/28:wcslen:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.35:2010/09/15:wcsncasecmp:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.35:2011/09/28:wcsncat:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.35:2011/09/28:wcsncmp:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.35:2011/09/28:wcsncpy:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.35:2011/10/01:wcsnlen:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.35:2011/10/01:wcsnrtombs:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.35:1999/07/25:wcspbrk:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.35:1999/07/25:wcsrchr:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.35:2011/09/28:wcsrtombs:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.35:1999/07/25:wcsspn:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.35:2011/09/28:wcsstr:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.35:2003/11/01:wcstoimax:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.35:2011/09/28:wcstok:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.35:2011/09/28:wcstombs:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-@:LDP man-pages:3.35:2003/11/01:wcstoumax:3:wcstoimax:3:
-○:LDP man-pages:3.35:2010/09/10:wcswidth:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.35:2011/09/22:wctob:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.35:1999/07/25:wctomb:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-○:LDP man-pages:3.35:1999/07/25:wctrans:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.35:1999/07/25:wctype:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.35:2011/09/28:wcwidth:3:2002/08/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:1999/07/25:wmemchr:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.35:1999/07/25:wmemcmp:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.35:1999/07/25:wmemcpy:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.35:1999/07/25:wmemmove:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-@:LDP man-pages:3.35:2008/08/12:wmempcpy:3:mempcpy:3:
-○:LDP man-pages:3.35:1999/07/25:wmemset:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.35:2008/07/14:wordexp:3:2004/09/29::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.35:2008/07/14:wordfree:3:wordexp:3:
-○:LDP man-pages:3.35:2011/09/17:wprintf:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-○:LDP man-pages:3.35:2003/04/04:xcrypt:3:2004/10/16::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.35:2003/04/04:xdecrypt:3:xcrypt:3:
-○:LDP man-pages:3.35:2007/12/30:xdr:3:2000/01/14::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-@:LDP man-pages:3.35:2008/07/17:xdr_accepted_reply:3:rpc:3:
-@:LDP man-pages:3.35:2007/12/30:xdr_array:3:xdr:3:
-@:LDP man-pages:3.35:2008/07/17:xdr_authunix_parms:3:rpc:3:
-@:LDP man-pages:3.35:2007/12/30:xdr_bool:3:xdr:3:
-@:LDP man-pages:3.35:2007/12/30:xdr_bytes:3:xdr:3:
-@:LDP man-pages:3.35:2008/07/17:xdr_callhdr:3:rpc:3:
-@:LDP man-pages:3.35:2008/07/17:xdr_callmsg:3:rpc:3:
-@:LDP man-pages:3.35:2007/12/30:xdr_char:3:xdr:3:
-@:LDP man-pages:3.35:2007/12/30:xdr_destroy:3:xdr:3:
-@:LDP man-pages:3.35:2007/12/30:xdr_double:3:xdr:3:
-@:LDP man-pages:3.35:2007/12/30:xdr_enum:3:xdr:3:
-@:LDP man-pages:3.35:2007/12/30:xdr_float:3:xdr:3:
-@:LDP man-pages:3.35:2007/12/30:xdr_free:3:xdr:3:
-@:LDP man-pages:3.35:2007/12/30:xdr_getpos:3:xdr:3:
-@:LDP man-pages:3.35:2007/12/30:xdr_inline:3:xdr:3:
-@:LDP man-pages:3.35:2007/12/30:xdr_int:3:xdr:3:
-@:LDP man-pages:3.35:2007/12/30:xdr_long:3:xdr:3:
-@:LDP man-pages:3.35:2007/12/30:xdr_opaque:3:xdr:3:
-@:LDP man-pages:3.35:2008/07/17:xdr_opaque_auth:3:rpc:3:
-@:LDP man-pages:3.35:2008/07/17:xdr_pmap:3:rpc:3:
-@:LDP man-pages:3.35:2008/07/17:xdr_pmaplist:3:rpc:3:
-@:LDP man-pages:3.35:2007/12/30:xdr_pointer:3:xdr:3:
-@:LDP man-pages:3.35:2007/12/30:xdr_reference:3:xdr:3:
-@:LDP man-pages:3.35:2008/07/17:xdr_rejected_reply:3:rpc:3:
-@:LDP man-pages:3.35:2008/07/17:xdr_replymsg:3:rpc:3:
-@:LDP man-pages:3.35:2007/12/30:xdr_setpos:3:xdr:3:
-@:LDP man-pages:3.35:2007/12/30:xdr_short:3:xdr:3:
-@:LDP man-pages:3.35:2007/12/30:xdr_string:3:xdr:3:
-@:LDP man-pages:3.35:2007/12/30:xdr_u_char:3:xdr:3:
-@:LDP man-pages:3.35:2007/12/30:xdr_u_int:3:xdr:3:
-@:LDP man-pages:3.35:2007/12/30:xdr_u_long:3:xdr:3:
-@:LDP man-pages:3.35:2007/12/30:xdr_u_short:3:xdr:3:
-@:LDP man-pages:3.35:2007/12/30:xdr_union:3:xdr:3:
-@:LDP man-pages:3.35:2007/12/30:xdr_vector:3:xdr:3:
-@:LDP man-pages:3.35:2007/12/30:xdr_void:3:xdr:3:
-@:LDP man-pages:3.35:2007/12/30:xdr_wrapstring:3:xdr:3:
-@:LDP man-pages:3.35:2007/12/30:xdrmem_create:3:xdr:3:
-@:LDP man-pages:3.35:2007/12/30:xdrrec_create:3:xdr:3:
-@:LDP man-pages:3.35:2007/12/30:xdrrec_endofrecord:3:xdr:3:
-@:LDP man-pages:3.35:2007/12/30:xdrrec_eof:3:xdr:3:
-@:LDP man-pages:3.35:2007/12/30:xdrrec_skiprecord:3:xdr:3:
-@:LDP man-pages:3.35:2007/12/30:xdrstdio_create:3:xdr:3:
-@:LDP man-pages:3.35:2003/04/04:xencrypt:3:xcrypt:3:
-@:LDP man-pages:3.35:2008/07/17:xprt_register:3:rpc:3:
-@:LDP man-pages:3.35:2008/07/17:xprt_unregister:3:rpc:3:
-○:LDP man-pages:3.35:2008/08/10:y0:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2008/08/10:y0f:3:y0:3:
-@:LDP man-pages:3.35:2008/08/10:y0l:3:y0:3:
-@:LDP man-pages:3.35:2008/08/10:y1:3:y0:3:
-@:LDP man-pages:3.35:2008/08/10:y1f:3:y0:3:
-@:LDP man-pages:3.35:2008/08/10:y1l:3:y0:3:
-@:LDP man-pages:3.35:2008/08/10:yn:3:y0:3:
-@:LDP man-pages:3.35:2008/08/10:ynf:3:y0:3:
-@:LDP man-pages:3.35:2008/08/10:ynl:3:y0:3:
-×:LDP man-pages:3.35:2011/09/21:cciss:4:::::
-○:LDP man-pages:3.35:1994/10/31:console:4:2002/01/14:o:argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.35:2011/09/15:console_codes:4:2008/10/08::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.35:2009/02/28:console_ioctl:4:2008/07/22::argrath@ub32.org:Kentaro Shirakata:
-×:LDP man-pages:3.35:2009/03/31:cpuid:4:::::
-○:LDP man-pages:3.35:2000/03/01:dsp56k:4:2000/07/11::sato@complex.eng.hokudai.ac.jp:Yuichi SATO:
-@:LDP man-pages:3.35:2009/02/01:epoll:4:epoll:7:
-○:LDP man-pages:3.35:2010/08/29:fd:4:1998/01/12:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi:
-@:LDP man-pages:3.35:2008/12/03:fifo:4:fifo:7:
-○:LDP man-pages:3.35:1997/08/02:full:4:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2002/12/31:futex:4:futex:7:
-○:LDP man-pages:3.35:1992/12/17:hd:4:1998/02/05:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi:
-×:LDP man-pages:3.35:2011/09/21:hpsa:4:::::
-○:LDP man-pages:3.35:2010/09/04:initrd:4:2005/10/09:o:amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2007/10/23:intro:4:1998/02/05:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi:
-@:LDP man-pages:3.35:1992/11/21:kmem:4:mem:4:
-○:LDP man-pages:3.35:1995/01/15:lp:4:1998/02/05:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi:
-○:LDP man-pages:3.35:1992/11/21:mem:4:1998/02/05:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi:
-○:LDP man-pages:3.35:1996/02/10:mouse:4:1999/03/24:o:ss236rx@ymg.urban.ne.jp:Shouichi Saito:
-×:LDP man-pages:3.35:2009/03/31:msr:4:::::
-○:LDP man-pages:3.35:2009/02/23:null:4:1998/02/05:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi:
-@:LDP man-pages:3.35:1992/11/21:port:4:mem:4:
-@:LDP man-pages:3.35:2002/10/09:ptmx:4:pts:4:
-○:LDP man-pages:3.35:2002/10/09:pts:4:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:1992/11/21:ram:4:1997/01/12:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi:
-○:LDP man-pages:3.35:2010/08/29:random:4:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2010/02/25:rtc:4:2007/02/08::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.35:1992/12/17:sd:4:1998/02/05::ishikawa@linux.or.jp:ISHIKAWA Mutsumi:
-○:LDP man-pages:3.35:2007/11/25:sk98lin:4:2007/06/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2010/09/04:st:4:2005/06/12::nakano@st.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.35:2003/04/07:tty:4:2003/09/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:1992/12/19:ttyS:4:1998/02/05::ishikawa@linux.or.jp:ISHIKAWA Mutsumi:
-○:LDP man-pages:3.35:2008/10/29:tty_ioctl:4:2004/11/16::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.35:2010/08/29:urandom:4:random:4:
-○:LDP man-pages:3.35:2007/12/17:vcs:4:2001/02/11::sato@complex.eng.hokudai.ac.jp:Yuichi SATO:
-@:LDP man-pages:3.35:2007/12/17:vcsa:4:vcs:4:
-○:LDP man-pages:3.35:1996/10/22:wavelan:4:1998/02/10::ishikawa@linux.or.jp:ISHIKAWA Mutsumi:
-@:LDP man-pages:3.35:2009/02/23:zero:4:null:4:
-○:LDP man-pages:3.35:2008/06/15:acct:5:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:1994/11/28:charmap:5:2008/07/22::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.35:2011/09/16:complex:5:complex:7:
-○:LDP man-pages:3.35:2010/11/15:core:5:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2001/12/26:dir_colors:5:2002/01/14::ysato@h4.dion.ne.jp:Yuichi SATO:
-☆:LDP man-pages:3.24=>3.35:2010/06/19:elf:5:2005/11/03::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.35:2009/07/25:environ:5:environ:7:
-☆:LDP man-pages:3.24=>3.35:2010/05/24:filesystems:5:2008/02/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2010/05/24:fs:5:filesystems:5:
-○:LDP man-pages:3.35:2000/08/27:ftpusers:5:2001/03/12::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-☆:LDP man-pages:3.29=>3.35:2010/10/21:group:5:2005/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2003/08/23:host.conf:5:2003/10/15::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.35:2002/06/16:hosts:5:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2003/08/24:hosts.equiv:5:2005/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2007/10/23:intro:5:1998/10/13::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-@:LDP man-pages:3.35:2009/01/26:ipc:5:svipc:7:
-○:LDP man-pages:3.35:1993/07/24:issue:5:1998/07/25::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.35:2008/06/17:locale:5:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:1992/12/29:motd:5:1998/2/4::nagoya@cc.hit-u.ac.jp:Hiroaki Nagoya:
-×:LDP man-pages:3.35:2008/09/04:networks:5:::::
-○:LDP man-pages:3.35:1992/12/29:nologin:5:1998/02/18::rui@linux.or.jp:Ueyama Rui:
-○:LDP man-pages:3.35:1999/10/01:nscd.conf:5:2006/07/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:1999/01/17:nsswitch.conf:5:2001/10/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-※:LDP man-pages:3.35:2008/08/15:numa_maps:5:numa:7:
-☆:LDP man-pages:3.29=>3.35:2010/10/21:passwd:5:2006/07/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-☆:LDP man-pages:3.24=>3.35:2011/10/04:proc:5:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2008/09/23:protocols:5:2008/07/22::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.35:2009/03/01:resolv.conf:5:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2009/03/01:resolver:5:resolv.conf:5:
-○:LDP man-pages:3.35:1985/09/26:rpc:5:2008/07/22::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.35:1992/12/29:securetty:5:2003/01/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2010/05/22:services:5:2002/08/14::amotoki@dd.iij4u.or.jp:Akihiro Motoki:
-○:LDP man-pages:3.35:1993/11/21:shells:5:2000/12/11::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.35:2001/06/19:slabinfo:5:2001/09/10::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.35:1996/10/21:termcap:5:2000/10/12::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.35:1993/07/24:ttytype:5:1998/02/10::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-☆:LDP man-pages:3.25=>3.35:2010/08/31:tzfile:5:1999/09/14::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.35:2011/09/28:utmp:5:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2011/09/28:utmpx:5:utmp:5:
-@:LDP man-pages:3.35:2011/09/28:wtmp:5:utmp:5:
-○:LDP man-pages:3.35:2007/10/23:intro:6:1997/11/15::pessi@kmc.kyoto-u.ac.jp:II Ryouta:
-×:LDP man-pages:3.35:2010/10/02:aio:7:::::
-×:LDP man-pages:3.35:2010/09/20:armscii-8:7:::::
-○:LDP man-pages:3.35:2008/11/25:arp:7:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2009/02/12:ascii:7:2006/04/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2010/09/19:boot:7:2005/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2007/12/16:bootparam:7:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-☆:LDP man-pages:3.32=>3.35:2011/10/04:capabilities:7:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2008/06/03:charsets:7:2008/07/22::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.35:2011/09/16:complex:7:2006/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-×:LDP man-pages:3.35:2010/09/20:cp1251:7:::::
-×:LDP man-pages:3.35:2008/11/12:cpuset:7:::::
-○:LDP man-pages:3.35:2008/06/03:credentials:7:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2008/11/20:ddp:7:1999/12/06::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.35:2009/07/25:environ:7:2006/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2009/02/01:epoll:7:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-☆:LDP man-pages:3.32=>3.35:2011/09/17:feature_test_macros:7:2007/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2008/12/03:fifo:7:2006/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2002/12/31:futex:7:2006/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-※:LDP man-pages:3.35:2009/01/13:glibc:7:libc:7:
-○:LDP man-pages:3.35:2003/08/24:glob:7:2003/09/28::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.35:2009/03/30:hier:7:2002/01/14::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-×:LDP man-pages:3.35:2010/11/07:hostname:7:::::
-○:LDP man-pages:3.35:2010/02/25:icmp:7:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-☆:LDP man-pages:3.25=>3.35:2010/11/12:inotify:7:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:1993/04/23:intro:7:2005/12/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-☆:LDP man-pages:3.25=>3.35:2011/09/22:ip:7:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2011/09/08:ipv6:7:2006/01/14::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.35:1999/05/31:iso-8859-1:7:iso_8859-1:7:
-※:LDP man-pages:3.35:2010/09/20:iso-8859-10:7:iso_8859-10:7:
-※:LDP man-pages:3.35:2010/09/20:iso-8859-11:7:iso_8859-11:7:
-※:LDP man-pages:3.35:2010/09/20:iso-8859-13:7:iso_8859-13:7:
-※:LDP man-pages:3.35:2010/09/20:iso-8859-14:7:iso_8859-14:7:
-@:LDP man-pages:3.35:1999/05/31:iso-8859-15:7:iso_8859-15:7:
-@:LDP man-pages:3.35:2003/03/05:iso-8859-16:7:iso_8859-16:7:
-@:LDP man-pages:3.35:2007/11/25:iso-8859-2:7:iso_8859-2:7:
-※:LDP man-pages:3.35:2010/09/20:iso-8859-3:7:iso_8859-3:7:
-※:LDP man-pages:3.35:2009/01/24:iso-8859-4:7:iso_8859-4:7:
-※:LDP man-pages:3.35:2010/09/20:iso-8859-5:7:iso_8859-5:7:
-※:LDP man-pages:3.35:2010/09/20:iso-8859-6:7:iso_8859-6:7:
-@:LDP man-pages:3.35:2008/10/30:iso-8859-7:7:iso_8859-7:7:
-※:LDP man-pages:3.35:2010/09/20:iso-8859-8:7:iso_8859-8:7:
-@:LDP man-pages:3.35:2002/09/24:iso-8859-9:7:iso_8859-9:7:
-○:LDP man-pages:3.35:1999/05/31:iso_8859-1:7:2002/09/14::argrath@ub32.org:Kentaro Shirakata:
-×:LDP man-pages:3.35:2010/09/20:iso_8859-10:7:::::
-×:LDP man-pages:3.35:2010/09/20:iso_8859-11:7:::::
-×:LDP man-pages:3.35:2010/09/20:iso_8859-13:7:::::
-×:LDP man-pages:3.35:2010/09/20:iso_8859-14:7:::::
-○:LDP man-pages:3.35:1999/05/31:iso_8859-15:7:2002/09/28::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-○:LDP man-pages:3.35:2003/03/05:iso_8859-16:7:2003/09/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2007/11/25:iso_8859-2:7:2002/09/28::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-×:LDP man-pages:3.35:2010/09/20:iso_8859-3:7:::::
-×:LDP man-pages:3.35:2009/01/24:iso_8859-4:7:::::
-×:LDP man-pages:3.35:2010/09/20:iso_8859-5:7:::::
-×:LDP man-pages:3.35:2010/09/20:iso_8859-6:7:::::
-○:LDP man-pages:3.35:2008/10/30:iso_8859-7:7:2002/09/28::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-×:LDP man-pages:3.35:2010/09/20:iso_8859-8:7:::::
-○:LDP man-pages:3.35:2002/09/24:iso_8859-9:7:2003/01/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:1999/05/31:iso_8859_1:7:iso_8859-1:7:
-※:LDP man-pages:3.35:2010/09/20:iso_8859_10:7:iso_8859-10:7:
-※:LDP man-pages:3.35:2010/09/20:iso_8859_11:7:iso_8859-11:7:
-※:LDP man-pages:3.35:2010/09/20:iso_8859_13:7:iso_8859-13:7:
-※:LDP man-pages:3.35:2010/09/20:iso_8859_14:7:iso_8859-14:7:
-@:LDP man-pages:3.35:1999/05/31:iso_8859_15:7:iso_8859-15:7:
-@:LDP man-pages:3.35:2003/03/05:iso_8859_16:7:iso_8859-16:7:
-@:LDP man-pages:3.35:2007/11/25:iso_8859_2:7:iso_8859-2:7:
-※:LDP man-pages:3.35:2010/09/20:iso_8859_3:7:iso_8859-3:7:
-※:LDP man-pages:3.35:2009/01/24:iso_8859_4:7:iso_8859-4:7:
-※:LDP man-pages:3.35:2010/09/20:iso_8859_5:7:iso_8859-5:7:
-※:LDP man-pages:3.35:2010/09/20:iso_8859_6:7:iso_8859-6:7:
-@:LDP man-pages:3.35:2008/10/30:iso_8859_7:7:iso_8859-7:7:
-※:LDP man-pages:3.35:2010/09/20:iso_8859_8:7:iso_8859-8:7:
-@:LDP man-pages:3.35:2002/09/24:iso_8859_9:7:iso_8859-9:7:
-○:LDP man-pages:3.35:2010/10/24:koi8-r:7:2001/07/14::ysato@h4.dion.ne.jp:Yuichi SATO:
-×:LDP man-pages:3.35:2010/09/20:koi8-u:7:::::
-@:LDP man-pages:3.35:1999/05/31:latin1:7:iso_8859-1:7:
-@:LDP man-pages:3.35:2003/03/05:latin10:7:iso_8859-16:7:
-@:LDP man-pages:3.35:2007/11/25:latin2:7:iso_8859-2:7:
-※:LDP man-pages:3.35:2010/09/20:latin3:7:iso_8859-3:7:
-※:LDP man-pages:3.35:2009/01/24:latin4:7:iso_8859-4:7:
-@:LDP man-pages:3.35:2002/09/24:latin5:7:iso_8859-9:7:
-※:LDP man-pages:3.35:2010/09/20:latin6:7:iso_8859-10:7:
-※:LDP man-pages:3.35:2010/09/20:latin7:7:iso_8859-13:7:
-※:LDP man-pages:3.35:2010/09/20:latin8:7:iso_8859-14:7:
-@:LDP man-pages:3.35:1999/05/31:latin9:7:iso_8859-15:7:
-×:LDP man-pages:3.35:2009/01/13:libc:7:::::
-○:LDP man-pages:3.35:2008/12/05:locale:7:2006/02/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2004/09/15:mailaddr:7:2005/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2007/05/30:man:7:2007/06/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2008/10/28:man-pages:7:2008/02/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2008/08/11:math_error:7:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-☆:LDP man-pages:3.32=>3.35:1999/07/11:mdoc:7:2008/10/08::argrath@ub32.org:Kentaro Shirakata:
-c:LDP man-pages:3.32=>3.35:1993/12/30:mdoc.samples:7:1999/01/21::man-jp@freebsd.org:FreeBSD jpman project:http://www.jp.freebsd.org/man-jp/
-○:LDP man-pages:3.35:2009/09/27:mq_overview:7:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2009/01/14:netdevice:7:2009/03/05::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.35:2008/11/11:netlink:7:2006/07/12::ysato444@yahoo.co.jp:Yuichi SATO:
-×:LDP man-pages:3.35:2008/08/15:numa:7:::::
-○:LDP man-pages:3.35:2011/09/09:operator:7:2004/11/16::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.35:2008/08/08:packet:7:2005/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2009/12/05:path_resolution:7:2007/06/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2005/12/08:pipe:7:2005/12/27::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2007/12/21:posixoptions:7:2005/01/14::ysato444@yahoo.co.jp:Yuichi SATO:
-☆:LDP man-pages:3.31=>3.35:2010/11/14:pthreads:7:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2005/10/10:pty:7:2005/10/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2008/11/20:raw:7:2007/01/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2009/01/12:regex:7:1998/07/08::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-×:LDP man-pages:3.35:2010/09/10:rtld-audit:7:::::
-○:LDP man-pages:3.35:2008/08/08:rtnetlink:7:2001/03/11::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.35:2010/05/22:sem_overview:7:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2010/09/10:shm_overview:7:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-×:LDP man-pages:3.35:2011/09/09:sigevent:7:::::
-○:LDP man-pages:3.35:2011/09/18:signal:7:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-☆:LDP man-pages:3.24=>3.35:2010/06/13:socket:7:2007/01/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-☆:LDP man-pages:2.67=>3.35:2007/12/20:spufs:7:2007/10/23::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2009/06/01:standards:7:2006/08/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2000/11/16:suffixes:7:2001/04/24::ysato@h4.dion.ne.jp:Yuichi SATO:
-○:LDP man-pages:3.35:2009/01/26:svipc:7:2006/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-×:LDP man-pages:3.35:2008/06/18:symlink:7:::::
-☆:LDP man-pages:3.25=>3.35:2010/09/10:tcp:7:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2006/12/28:termio:7:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2010/02/25:time:7:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-※:LDP man-pages:3.35:2010/09/20:tis-620:7:iso_8859-11:7:
-☆:LDP man-pages:3.24=>3.35:2010/06/13:udp:7:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2008/12/03:udplite:7:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2001/05/11:unicode:7:2001/07/14::ysato@h4.dion.ne.jp:Yuichi SATO:
-○:LDP man-pages:3.35:2001/12/22:units:7:2002/01/14::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-☆:LDP man-pages:3.25=>3.35:2011/09/15:unix:7:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2000/03/14:uri:7:2008/07/22::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.35:2000/03/14:url:7:uri:7:
-@:LDP man-pages:3.35:2000/03/14:urn:7:uri:7:
-○:LDP man-pages:3.35:2001/05/11:utf-8:7:2001/07/14::ysato@h4.dion.ne.jp:Yuichi SATO:
-@:LDP man-pages:3.35:2001/05/11:utf8:7:utf-8:7:
-○:LDP man-pages:3.35:2008/08/08:x25:7:1999/12/06::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.35:2007/10/23:intro:8:2008/02/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.35:2009/01/12:ld-linux:8:ld.so:8:
-@:LDP man-pages:3.35:2009/01/12:ld-linux.so:8:ld.so:8:
-○:LDP man-pages:3.35:2009/01/12:ld.so:8:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.35:2009/04/15:ldconfig:8:2002/08/20::ysato@h4.dion.ne.jp:Yuichi SATO:The ancestor is in ld.so.
-○:LDP man-pages:3.35:2008/12/05:nscd:8:2009/03/14::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.35:1998/11/01:sync:8:2000/06/13::sato@complex.eng.hokudai.ac.jp:Yuichi SATO:
-○:LDP man-pages:3.35:2007/05/18:tzselect:8:2002/01/14::ysato@h4.dion.ne.jp:Yuichi SATO:
-○:LDP man-pages:3.35:0000/00/00:zdump:8:1999/09/14::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.35:2010/02/25:zic:8:2001/04/04::sato@complex.eng.hokudai.ac.jp:Yuichi SATO:
+×:LDP man-pages:3.37:2011/10/31:getent:1:::::
+○:LDP man-pages:3.37:2007/11/15:intro:1:2008/02/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2000/10/30:ldd:1:2002/02/14::ysato@h4.dion.ne.jp:Yuichi SATO:
+○:LDP man-pages:3.37:2008/11/14:time:1:2008/11/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:_Exit:2:_exit:2:
+@:LDP man-pages:3.37:2011/09/08:__clone2:2:clone:2:
+○:LDP man-pages:3.37:2010/09/20:_exit:2:2001/12/14::ysato@h4.dion.ne.jp:Yuichi SATO:
+@:LDP man-pages:3.37:1995/06/10:_llseek:2:llseek:2:
+@:LDP man-pages:3.37:2010/08/31:_newselect:2:select:2:
+○:LDP man-pages:3.37:2007/12/19:_syscall:2:2008/02/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2008/11/20:_sysctl:2:sysctl:2:
+○:LDP man-pages:3.37:2010/09/10:accept:2:2008/12/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/10:accept4:2:accept:2:
+☆:LDP man-pages:3.29=>3.37:2010/10/24:access:2:2007/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2008/06/16:acct:2:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
+×:LDP man-pages:3.37:2010/02/25:add_key:2:::::
+○:LDP man-pages:3.37:2004/05/27:adjtimex:2:2006/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2007/07/05:afs_syscall:2:unimplemented:2:
+○:LDP man-pages:3.37:2008/06/12:alarm:2:1997/02/22::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+○:LDP man-pages:3.37:2007/05/31:alloc_hugepages:2:2007/06/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2007/12/26:arch_prctl:2:2005/11/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/10/09:arm_fadvise:2:posix_fadvise:2:
+@:LDP man-pages:3.37:2010/10/09:arm_fadvise64_64:2:posix_fadvise:2:
+@:LDP man-pages:3.37:2010/10/09:arm_sync_file_range:2:sync_file_range:2:
+☆:LDP man-pages:3.35=>3.37:2012/03/05:bdflush:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.37:2007/12/28:bind:2:2007/06/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2007/07/05:break:2:unimplemented:2:
+○:LDP man-pages:3.37:2010/09/20:brk:2:2007/02/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2007/05/26:cacheflush:2:2005/10/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2010/09/20:capget:2:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:capset:2:capget:2:
+☆:LDP man-pages:3.31=>3.37:2010/11/25:chdir:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.37:2010/09/26:chmod:2:2005/01/14::ysato444@yahoo.co.jp:Yuichi SATO:
+☆:LDP man-pages:3.31=>3.37:2010/11/22:chown:2:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.37:2010/11/22:chown32:2:chown:2:
+○:LDP man-pages:3.37:2010/09/20:chroot:2:2005/01/14::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.37:2010/02/03:clock_getres:2:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.37:2010/02/03:clock_gettime:2:clock_getres:2:
+○:LDP man-pages:3.37:2010/12/03:clock_nanosleep:2:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/02/03:clock_settime:2:clock_getres:2:
+☆:LDP man-pages:3.32=>3.37:2011/09/08:clone:2:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2011/09/08:clone2:2:clone:2:
+○:LDP man-pages:3.37:2007/12/28:close:2:2007/10/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2008/12/03:connect:2:2005/10/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2012/02/27:creat:2:open:2:
+○:LDP man-pages:3.37:2007/06/03:create_module:2:2006/07/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:0000/00/00:delete_module:2:2006/07/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.35=>3.37:2012/02/14:dup:2:2005/09/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2012/02/14:dup2:2:dup:2:
+@:LDP man-pages:3.37:2012/02/14:dup3:2:dup:2:
+☆:LDP man-pages:3.31=>3.37:2010/12/03:epoll_create:2:2009/03/14::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.37:2010/12/03:epoll_create1:2:epoll_create:2:
+☆:LDP man-pages:3.31=>3.37:2010/12/03:epoll_ctl:2:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/12/03:epoll_pwait:2:epoll_wait:2:
+☆:LDP man-pages:3.31=>3.37:2010/12/03:epoll_wait:2:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.25=>3.37:2010/08/30:eventfd:2:2008/11/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/08/30:eventfd2:2:eventfd:2:
+☆:LDP man-pages:3.32=>3.37:2011/09/14:execve:2:2008/04/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:exit:2:_exit:2:
+○:LDP man-pages:3.37:2008/11/27:exit_group:2:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
+☆:LDP man-pages:3.29=>3.37:2010/10/24:faccessat:2:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/10/09:fadvise64:2:posix_fadvise:2:
+@:LDP man-pages:3.37:2010/10/09:fadvise64_64:2:posix_fadvise:2:
+☆:LDP man-pages:3.32=>3.37:2012/02/27:fallocate:2:2007/10/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/11/25:fchdir:2:chdir:2:
+@:LDP man-pages:3.37:2010/09/26:fchmod:2:chmod:2:
+○:LDP man-pages:3.37:2009/12/13:fchmodat:2:2006/12/28::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.37:2010/11/22:fchown:2:chown:2:
+@:LDP man-pages:3.37:2010/11/22:fchown32:2:fchown:2:
+○:LDP man-pages:3.37:2009/12/13:fchownat:2:2006/12/28::ysato444@yahoo.co.jp:Yuichi SATO:
+☆:LDP man-pages:3.24=>3.37:2011/09/15:fcntl:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2011/09/15:fcntl64:2:fcntl:2:
+@:LDP man-pages:3.37:2012/02/27:fdatasync:2:fsync:2:
+@:LDP man-pages:3.37:2001/12/01:fgetxattr:2:getxattr:2:
+@:LDP man-pages:3.37:2001/12/01:flistxattr:2:listxattr:2:
+○:LDP man-pages:3.37:2009/07/25:flock:2:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.35=>3.37:2012/02/27:fork:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2007/05/31:free_hugepages:2:alloc_hugepages:2:
+@:LDP man-pages:3.37:2001/12/01:fremovexattr:2:removexattr:2:
+@:LDP man-pages:3.37:2001/12/31:fsetxattr:2:setxattr:2:
+@:LDP man-pages:3.37:2011/10/04:fstat:2:stat:2:
+@:LDP man-pages:3.37:2011/10/04:fstat64:2:fstat:2:
+☆:LDP man-pages:3.31=>3.37:2011/09/19:fstatat:2:2006/12/28::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.37:2011/09/19:fstatat64:2:fstatat:2:
+@:LDP man-pages:3.37:2010/11/21:fstatfs:2:statfs:2:
+@:LDP man-pages:3.37:2010/11/21:fstatfs64:2:fstatfs:2:
+@:LDP man-pages:3.37:2003/08/22:fstatvfs:2:statvfs:3:
+☆:LDP man-pages:3.35=>3.37:2012/02/27:fsync:2:2007/10/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2011/09/08:ftruncate:2:truncate:2:
+@:LDP man-pages:3.37:2011/09/08:ftruncate64:2:ftruncate:2:
+○:LDP man-pages:3.37:2010/08/29:futex:2:2007/02/08::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.37:2009/12/13:futimesat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.37:0000/00/00:get_kernel_syms:2:2006/07/31::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2008/08/15:get_mempolicy:2:2008/11/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2008/11/27:get_thread_area:2:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2009/03/15:getcontext:2:2001/12/15::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+×:LDP man-pages:3.37:2008/06/03:getcpu:2:::::
+@:LDP man-pages:3.37:2010/09/20:getcwd:2:getcwd:3:
+☆:LDP man-pages:3.31=>3.37:2010/11/21:getdents:2:2009/03/05::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.37:2010/11/21:getdents64:2:getdents:2:
+○:LDP man-pages:3.37:2009/09/27:getdomainname:2:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2010/09/20:getdtablesize:2:2007/01/14::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.37:2010/11/22:getegid:2:getgid:2:
+@:LDP man-pages:3.37:2010/11/22:getegid32:2:getegid:2:
+@:LDP man-pages:3.37:2010/11/22:geteuid:2:getuid:2:
+@:LDP man-pages:3.37:2010/11/22:geteuid32:2:geteuid:2:
+☆:LDP man-pages:3.31=>3.37:2010/11/22:getgid:2:1997/06/26::suto@av.crl.sony.co.jp:SUTO, Mitsuaki:
+@:LDP man-pages:3.37:2010/11/22:getgid32:2:getgid:2:
+☆:LDP man-pages:3.31=>3.37:2010/11/22:getgroups:2:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/11/22:getgroups32:2:getgroups:2:
+@:LDP man-pages:3.37:2010/09/20:gethostid:2:gethostid:3:
+○:LDP man-pages:3.37:2010/09/26:gethostname:2:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2009/03/15:getitimer:2:2007/10/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.31=>3.37:2010/11/16:getpagesize:2:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2008/12/03:getpeername:2:2005/02/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/26:getpgid:2:setpgid:2:
+@:LDP man-pages:3.37:2010/09/26:getpgrp:2:setpgid:2:
+○:LDP man-pages:3.37:2008/09/23:getpid:2:1997/06/27::suto@av.crl.sony.co.jp:SUTO, Mitsuaki:
+@:LDP man-pages:3.37:2007/07/05:getpmsg:2:unimplemented:2:
+@:LDP man-pages:3.37:2008/09/23:getppid:2:getpid:2:
+○:LDP man-pages:3.37:2008/05/29:getpriority:2:2005/10/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/11/22:getresgid:2:getresuid:2:
+@:LDP man-pages:3.37:2010/11/22:getresgid32:2:getresgid:2:
+☆:LDP man-pages:3.31=>3.37:2010/11/22:getresuid:2:2003/11/13::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.37:2010/11/22:getresuid32:2:getresuid:2:
+☆:LDP man-pages:3.30=>3.37:2011/09/10:getrlimit:2:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.24=>3.37:2010/09/26:getrusage:2:2008/11/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2010/09/26:getsid:2:2002/02/03::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.37:2008/12/03:getsockname:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.37:2008/12/03:getsockopt:2:2008/07/24::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.37:2008/04/14:gettid:2:2003/09/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2009/03/25:gettimeofday:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.31=>3.37:2010/11/22:getuid:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.37:2010/11/22:getuid32:2:getuid:2:
+○:LDP man-pages:3.37:2001/12/01:getxattr:2:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2007/07/05:gtty:2:unimplemented:2:
+○:LDP man-pages:3.37:1994/08/21:idle:2:2000/01/14::argrath@yo.rim.or.jp:Kentaro Shirakata:
+@:LDP man-pages:3.37:1995/11/29:inb:2:outb:2:
+@:LDP man-pages:3.37:1995/11/29:inb_p:2:outb:2:
+○:LDP man-pages:3.37:0000/00/00:init_module:2:2006/07/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:1995/11/29:inl:2:outb:2:
+@:LDP man-pages:3.37:1995/11/29:inl_p:2:outb:2:
+☆:LDP man-pages:3.29=>3.37:2010/10/20:inotify_add_watch:2:2006/08/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2008/10/10:inotify_init:2:2006/08/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2008/10/10:inotify_init1:2:inotify_init:2:
+○:LDP man-pages:3.37:2010/10/15:inotify_rm_watch:2:2006/08/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:1995/11/29:insb:2:outb:2:
+@:LDP man-pages:3.37:1995/11/29:insl:2:outb:2:
+@:LDP man-pages:3.37:1995/11/29:insw:2:outb:2:
+○:LDP man-pages:3.37:2010/11/11:intro:2:2006/04/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:1995/11/29:inw:2:outb:2:
+@:LDP man-pages:3.37:1995/11/29:inw_p:2:outb:2:
+○:LDP man-pages:3.37:2008/06/18:io_cancel:2:2003/03/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2008/06/18:io_destroy:2:2003/03/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2008/07/04:io_getevents:2:2003/03/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2008/06/18:io_setup:2:2003/03/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2008/06/18:io_submit:2:2003/03/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2000/09/21:ioctl:2:2011/09/15::tati@kc5.so-net.ne.jp:TACHIBANA Akira:
+○:LDP man-pages:3.37:2007/12/29:ioctl_list:2:2004/06/13::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.37:2007/06/15:ioperm:2:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2004/12/26:iopl:2:2005/02/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2008/07/09:ioprio_get:2:ioprio_set:2:
+○:LDP man-pages:3.37:2008/07/09:ioprio_set:2:2007/01/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2007/06/28:ipc:2:1997/02/23::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+×:LDP man-pages:3.37:2010/11/04:kexec_load:2:::::
+×:LDP man-pages:3.37:2010/02/25:keyctl:2:::::
+○:LDP man-pages:3.37:2009/09/15:kill:2:2005/12/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2010/09/20:killpg:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.37:2010/11/22:lchown:2:chown:2:
+@:LDP man-pages:3.37:2010/11/22:lchown32:2:lchown:2:
+@:LDP man-pages:3.37:2001/12/01:lgetxattr:2:getxattr:2:
+○:LDP man-pages:3.37:2008/08/21:link:2:2005/05/12::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.37:2009/12/13:linkat:2:2007/01/21::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2008/11/20:listen:2:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.37:2001/12/01:listxattr:2:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2001/12/01:llistxattr:2:listxattr:2:
+○:LDP man-pages:3.37:1995/06/10:llseek:2:2005/01/14::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.37:2007/07/05:lock:2:unimplemented:2:
+○:LDP man-pages:3.37:2004/06/17:lookup_dcookie:2:2005/02/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2001/12/01:lremovexattr:2:removexattr:2:
+☆:LDP man-pages:3.32=>3.37:2011/09/25:lseek:2:2006/03/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2001/12/31:lsetxattr:2:setxattr:2:
+@:LDP man-pages:3.37:2011/10/04:lstat:2:stat:2:
+@:LDP man-pages:3.37:2011/10/04:lstat64:2:lstat:2:
+☆:LDP man-pages:3.24=>3.37:2011/09/18:madvise:2:2007/01/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2007/07/05:madvise1:2:unimplemented:2:
+○:LDP man-pages:3.37:2008/08/15:mbind:2:2008/11/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+×:LDP man-pages:3.37:2010/11/01:migrate_pages:2:::::
+○:LDP man-pages:3.37:2008/04/22:mincore:2:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.25=>3.37:2010/06/26:mkdir:2:2008/10/08::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.37:2009/12/13:mkdirat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.37:2010/09/20:mknod:2:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2010/09/20:mknodat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO:
+☆:LDP man-pages:3.24=>3.37:2011/09/14:mlock:2:2006/02/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2011/09/14:mlockall:2:mlock:2:
+☆:LDP man-pages:3.24=>3.37:2010/06/20:mmap:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2008/04/22:mmap2:2:2007/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2007/06/01:modify_ldt:2:2007/06/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.35=>3.37:2012/01/18:mount:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2010/06/11:move_pages:2:2008/11/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2011/09/08:mprotect:2:2007/06/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2007/07/05:mpx:2:unimplemented:2:
+○:LDP man-pages:3.37:2010/08/29:mq_getsetattr:2:2006/07/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/10/04:mq_notify:2:mq_notify:3:
+@:LDP man-pages:3.37:2009/02/20:mq_open:2:mq_open:3:
+@:LDP man-pages:3.37:2010/09/20:mq_timedreceive:2:mq_receive:3:
+@:LDP man-pages:3.37:2010/09/20:mq_timedsend:2:mq_send:3:
+@:LDP man-pages:3.37:2010/08/29:mq_unlink:2:mq_unlink:3:
+☆:LDP man-pages:3.35=>3.37:2010/06/10:mremap:2:2006/04/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2008/08/06:msgctl:2:2005/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2004/05/27:msgget:2:2005/03/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2008/04/23:msgop:2:2006/03/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2008/04/23:msgrcv:2:msgop:2:
+@:LDP man-pages:3.37:2008/04/23:msgsnd:2:msgop:2:
+○:LDP man-pages:3.37:2008/04/22:msync:2:2008/07/24::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.37:2011/09/14:munlock:2:mlock:2:
+@:LDP man-pages:3.37:2011/09/14:munlockall:2:mlock:2:
+@:LDP man-pages:3.37:2010/06/20:munmap:2:mmap:2:
+○:LDP man-pages:3.37:2009/01/19:nanosleep:2:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.35=>3.37:2012/03/05:nfsservctl:2:1997/08/30::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+○:LDP man-pages:3.37:2007/07/26:nice:2:2005/10/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2011/10/04:oldfstat:2:stat:2:
+@:LDP man-pages:3.37:2011/10/04:oldlstat:2:stat:2:
+@:LDP man-pages:3.37:2008/12/03:oldolduname:2:uname:2:
+@:LDP man-pages:3.37:2011/10/04:oldstat:2:stat:2:
+@:LDP man-pages:3.37:2008/12/03:olduname:2:uname:2:
+☆:LDP man-pages:3.31=>3.37:2012/02/27:open:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2009/12/13:openat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.37:1995/11/29:outb:2:2005/10/30::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.37:1995/11/29:outb_p:2:outb:2:
+@:LDP man-pages:3.37:1995/11/29:outl:2:outb:2:
+@:LDP man-pages:3.37:1995/11/29:outl_p:2:outb:2:
+@:LDP man-pages:3.37:1995/11/29:outsb:2:outb:2:
+@:LDP man-pages:3.37:1995/11/29:outsl:2:outb:2:
+@:LDP man-pages:3.37:1995/11/29:outsw:2:outb:2:
+@:LDP man-pages:3.37:1995/11/29:outw:2:outb:2:
+@:LDP man-pages:3.37:1995/11/29:outw_p:2:outb:2:
+@:LDP man-pages:3.37:2009/12/05:path_resolution:2:path_resolution:7:
+○:LDP man-pages:3.37:2008/10/06:pause:2:1997/06/27::suto@av.crl.sony.co.jp:SUTO, Mitsuaki:
+@:LDP man-pages:3.37:2003/07/14:pciconfig_iobase:2:pciconfig_read:2:
+○:LDP man-pages:3.37:2003/07/14:pciconfig_read:2:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.37:2003/07/14:pciconfig_write:2:pciconfig_read:2:
+○:LDP man-pages:3.37:2003/01/01:personality:2:2003/09/14::argrath@ub32.org:Kentaro Shirakata:
+☆:LDP man-pages:3.35=>3.37:2012/02/14:pipe:2:2008/11/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2012/02/14:pipe2:2:pipe:2:
+○:LDP man-pages:3.37:2007/06/01:pivot_root:2:2000/06/14::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.37:2010/09/20:poll:2:2006/07/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.24=>3.37:2010/10/09:posix_fadvise:2:2007/02/08::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.37:2010/09/20:ppoll:2:poll:2:
+☆:LDP man-pages:3.24=>3.37:2011/09/17:prctl:2:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.31=>3.37:2010/11/21:pread:2:1999/06/25::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+@:LDP man-pages:3.37:2010/11/21:pread64:2:pread:2:
+@:LDP man-pages:3.37:2010/11/17:preadv:2:readv:2:
+@:LDP man-pages:3.37:2011/09/10:prlimit:2:getrlimit:2:
+@:LDP man-pages:3.37:2007/07/05:prof:2:unimplemented:2:
+@:LDP man-pages:3.37:2010/08/31:pselect:2:select:2:
+@:LDP man-pages:3.37:2010/08/31:pselect6:2:select:2:
+☆:LDP man-pages:3.35=>3.37:2012/03/06:ptrace:2:2007/05/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2007/07/05:putpmsg:2:unimplemented:2:
+@:LDP man-pages:3.37:2010/11/21:pwrite:2:pread:2:
+@:LDP man-pages:3.37:2010/11/21:pwrite64:2:pwrite:2:
+@:LDP man-pages:3.37:2010/11/17:pwritev:2:readv:2:
+○:LDP man-pages:3.37:0000/00/00:query_module:2:2006/07/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.24=>3.37:2010/06/16:quotactl:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.37:2009/02/23:read:2:2005/10/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2010/09/10:readahead:2:2005/02/27::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2008/10/02:readdir:2:1997/02/23::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+☆:LDP man-pages:3.32=>3.37:2011/09/20:readlink:2:2006/07/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2009/12/13:readlinkat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO:
+☆:LDP man-pages:3.31=>3.37:2010/11/17:readv:2:2007/06/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.29=>3.37:2010/10/31:reboot:2:2008/07/24::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.37:2011/09/16:recv:2:2008/12/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2011/09/16:recvfrom:2:recv:2:
+×:LDP man-pages:3.37:2011/10/04:recvmmsg:2:::::
+@:LDP man-pages:3.37:2011/09/16:recvmsg:2:recv:2:
+○:LDP man-pages:3.37:2008/04/22:remap_file_pages:2:2005/10/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2001/12/01:removexattr:2:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2009/03/30:rename:2:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2009/12/13:renameat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO:
+×:LDP man-pages:3.37:2010/02/25:request_key:2:::::
+○:LDP man-pages:3.37:2008/05/08:rmdir:2:2006/07/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2011/09/08:rt_sigaction:2:sigaction:2:
+@:LDP man-pages:3.37:2008/10/04:rt_sigpending:2:sigpending:2:
+@:LDP man-pages:3.37:2008/10/17:rt_sigprocmask:2:sigprocmask:2:
+×:LDP man-pages:3.37:2011/09/18:rt_sigqueueinfo:2:::::
+@:LDP man-pages:3.37:2008/06/26:rt_sigreturn:2:sigreturn:2:
+@:LDP man-pages:3.37:2005/09/15:rt_sigsuspend:2:sigsuspend:2:
+@:LDP man-pages:3.37:2011/10/03:rt_sigtimedwait:2:sigtimedwait:2:
+※:LDP man-pages:3.37:2011/09/18:rt_tgsigqueueinfo:2:rt_sigqueueinfo:2:
+@:LDP man-pages:3.37:2010/09/20:sbrk:2:brk:2:
+○:LDP man-pages:3.37:2006/03/23:sched_get_priority_max:2:2006/04/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2006/03/23:sched_get_priority_min:2:sched_get_priority_max:2:
+@:LDP man-pages:3.37:2010/11/06:sched_getaffinity:2:sched_setaffinity:2:
+@:LDP man-pages:3.37:2006/03/23:sched_getparam:2:sched_setparam:2:
+@:LDP man-pages:3.37:2011/09/19:sched_getscheduler:2:sched_setscheduler:2:
+☆:LDP man-pages:3.35=>3.37:2011/10/16:sched_rr_get_interval:2:2007/06/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2010/11/06:sched_setaffinity:2:2008/12/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2006/03/23:sched_setparam:2:2006/04/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.24=>3.37:2011/09/19:sched_setscheduler:2:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2008/10/18:sched_yield:2:1997/02/23::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+@:LDP man-pages:3.37:2007/07/05:security:2:unimplemented:2:
+○:LDP man-pages:3.37:2010/08/31:select:2:2007/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2010/06/10:select_tut:2:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2009/09/27:semctl:2:2005/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2004/05/27:semget:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2008/10/04:semop:2:2007/05/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2008/10/04:semtimedop:2:semop:2:
+☆:LDP man-pages:3.35=>3.37:2012/02/27:send:2:2006/04/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.31=>3.37:2011/09/14:sendfile:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2011/09/14:sendfile64:2:sendfile:2:
+×:LDP man-pages:3.37:2012/02/27:sendmmsg:2:::::
+@:LDP man-pages:3.37:2012/02/27:sendmsg:2:send:2:
+@:LDP man-pages:3.37:2012/02/27:sendto:2:send:2:
+○:LDP man-pages:3.37:2008/08/15:set_mempolicy:2:2008/11/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2008/11/27:set_thread_area:2:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2004/09/10:set_tid_address:2:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.37:2009/03/15:setcontext:2:getcontext:2:
+@:LDP man-pages:3.37:2009/09/27:setdomainname:2:getdomainname:2:
+@:LDP man-pages:3.37:2009/10/17:setegid:2:seteuid:2:
+○:LDP man-pages:3.37:2009/10/17:seteuid:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.31=>3.37:2010/11/22:setfsgid:2:2005/02/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/11/22:setfsgid32:2:setfsgid:2:
+☆:LDP man-pages:3.31=>3.37:2010/11/22:setfsuid:2:2005/02/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/11/22:setfsuid32:2:setfsuid:2:
+☆:LDP man-pages:3.31=>3.37:2010/11/22:setgid:2:2003/02/14::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.37:2010/11/22:setgid32:2:setgid:2:
+@:LDP man-pages:3.37:2010/11/22:setgroups:2:getgroups:2:
+@:LDP man-pages:3.37:2010/11/22:setgroups32:2:setgroups:2:
+@:LDP man-pages:3.37:2010/09/20:sethostid:2:gethostid:3:
+@:LDP man-pages:3.37:2010/09/26:sethostname:2:gethostname:2:
+@:LDP man-pages:3.37:2009/03/15:setitimer:2:getitimer:2:
+×:LDP man-pages:3.37:2011/10/04:setns:2:::::
+○:LDP man-pages:3.37:2010/09/26:setpgid:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/26:setpgrp:2:setpgid:2:
+@:LDP man-pages:3.37:2008/05/29:setpriority:2:getpriority:2:
+@:LDP man-pages:3.37:2010/11/22:setregid:2:setreuid:2:
+@:LDP man-pages:3.37:2010/11/22:setregid32:2:setregid:2:
+@:LDP man-pages:3.37:2010/11/22:setresgid:2:setresuid:2:
+@:LDP man-pages:3.37:2010/11/22:setresgid32:2:setresgid:2:
+☆:LDP man-pages:3.31=>3.37:2010/11/22:setresuid:2:2005/11/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/11/22:setresuid32:2:setresuid:2:
+☆:LDP man-pages:3.31=>3.37:2010/11/22:setreuid:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/11/22:setreuid32:2:setreuid:2:
+@:LDP man-pages:3.37:2011/09/10:setrlimit:2:getrlimit:2:
+○:LDP man-pages:3.37:2008/12/03:setsid:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.37:2008/12/03:setsockopt:2:getsockopt:2:
+@:LDP man-pages:3.37:2009/03/25:settimeofday:2:gettimeofday:2:
+☆:LDP man-pages:3.31=>3.37:2010/11/22:setuid:2:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.37:2010/11/22:setuid32:2:setuid:2:
+○:LDP man-pages:3.37:2008/12/03:setup:2:2008/07/24::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.37:2001/12/31:setxattr:2:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2007/07/05:sgetmask:2:2007/10/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2008/06/03:shmat:2:shmop:2:
+○:LDP man-pages:3.37:2008/08/07:shmctl:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2008/06/03:shmdt:2:shmop:2:
+○:LDP man-pages:3.37:2006/05/02:shmget:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2008/06/03:shmop:2:2006/04/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2008/12/03:shutdown:2:2001/11/09::argrath@ub32.org:Kentaro Shirakata:
+☆:LDP man-pages:3.24=>3.37:2011/09/08:sigaction:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2010/09/26:sigaltstack:2:2006/01/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2008/07/11:signal:2:2007/06/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2009/01/13:signalfd:2:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2009/01/13:signalfd4:2:signalfd:2:
+○:LDP man-pages:3.37:2008/10/04:sigpending:2:2005/12/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2008/10/17:sigprocmask:2:2005/10/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2007/07/26:sigqueue:2:sigqueue:3:
+○:LDP man-pages:3.37:2008/06/26:sigreturn:2:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2005/09/15:sigsuspend:2:2005/10/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2011/10/03:sigtimedwait:2:sigwaitinfo:2:
+○:LDP man-pages:3.37:2011/10/03:sigwaitinfo:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2009/01/19:socket:2:2008/11/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2007/06/28:socketcall:2:1997/03/03::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+○:LDP man-pages:3.37:2008/10/11:socketpair:2:2002/09/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2009/09/15:splice:2:2007/02/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:2.67=>3.37:2007/12/20:spu_create:2:2007/10/23::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2007/11/25:spu_run:2:2007/10/23::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2007/07/05:ssetmask:2:sgetmask:2:
+☆:LDP man-pages:3.25=>3.37:2011/10/04:stat:2:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2011/10/04:stat64:2:stat:2:
+☆:LDP man-pages:3.31=>3.37:2010/11/21:statfs:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/11/21:statfs64:2:statfs:2:
+@:LDP man-pages:3.37:2003/08/22:statvfs:2:statvfs:3:
+○:LDP man-pages:3.37:2010/02/25:stime:2:2003/09/14::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.37:2007/07/05:stty:2:unimplemented:2:
+×:LDP man-pages:3.37:2010/10/30:subpage_prot:2:::::
+@:LDP man-pages:3.37:2010/11/15:swapoff:2:swapon:2:
+☆:LDP man-pages:3.31=>3.37:2010/11/15:swapon:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.37:2010/09/20:symlink:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.37:2009/12/13:symlinkat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO:
+☆:LDP man-pages:3.32=>3.37:2012/02/12:sync:2:2003/09/14::argrath@ub32.org:Kentaro Shirakata:
+☆:LDP man-pages:3.24=>3.37:2010/10/09:sync_file_range:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/10/09:sync_file_range2:2:sync_file_range:2:
+@:LDP man-pages:3.37:2012/02/12:syncfs:2:sync:2:
+○:LDP man-pages:3.37:2007/07/26:syscall:2:2002/08/20::ysato@h4.dion.ne.jp:Yuichi SATO:
+☆:LDP man-pages:3.32=>3.37:2012/03/05:syscalls:2:2007/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2008/11/20:sysctl:2:1999/12/03::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+○:LDP man-pages:3.37:2010/06/27:sysfs:2:2001/06/02::ysato@h4.dion.ne.jp:Yuichi SATO:
+○:LDP man-pages:3.37:2007/11/15:sysinfo:2:2000/09/23::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+☆:LDP man-pages:3.32=>3.37:2011/09/07:syslog:2:2008/04/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2009/09/15:tee:2:2007/02/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2011/09/18:tgkill:2:tkill:2:
+☆:LDP man-pages:3.32=>3.37:2011/09/09:time:2:1999/07/27::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+×:LDP man-pages:3.37:2010/09/27:timer_create:2:::::
+×:LDP man-pages:3.37:2009/02/20:timer_delete:2:::::
+×:LDP man-pages:3.37:2009/02/20:timer_getoverrun:2:::::
+※:LDP man-pages:3.37:2009/02/20:timer_gettime:2:timer_settime:2:
+×:LDP man-pages:3.37:2009/02/20:timer_settime:2:::::
+☆:LDP man-pages:3.32=>3.37:2011/09/14:timerfd_create:2:2008/11/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2011/09/14:timerfd_gettime:2:timerfd_create:2:
+@:LDP man-pages:3.37:2011/09/14:timerfd_settime:2:timerfd_create:2:
+○:LDP man-pages:3.37:2008/06/25:times:2:2008/02/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2011/09/18:tkill:2:2005/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.31=>3.37:2011/09/08:truncate:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2011/09/08:truncate64:2:truncate:2:
+@:LDP man-pages:3.37:2007/07/05:tuxcall:2:unimplemented:2:
+@:LDP man-pages:3.37:2011/09/10:ugetrlimit:2:getrlimit:2:
+○:LDP man-pages:3.37:2008/01/09:umask:2:2008/02/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.24=>3.37:2010/06/19:umount:2:2008/11/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/06/19:umount2:2:umount:2:
+○:LDP man-pages:3.37:2008/12/03:uname:2:2002/02/14::ysato@h4.dion.ne.jp:Yuichi SATO:
+○:LDP man-pages:3.37:2007/07/05:unimplemented:2:2003/03/06::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+☆:LDP man-pages:3.32=>3.37:2011/09/15:unlink:2:2006/04/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2009/12/13:unlinkat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO:
+☆:LDP man-pages:3.29=>3.37:2010/10/30:unshare:2:2006/08/19::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.37:2005/01/09:uselib:2:2005/04/21::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2003/08/04:ustat:2:2004/06/13::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.37:2008/08/06:utime:2:2006/10/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+×:LDP man-pages:3.37:2009/12/13:utimensat:2:::::
+@:LDP man-pages:3.37:2008/08/06:utimes:2:utime:2:
+☆:LDP man-pages:3.35=>3.37:2012/02/08:vfork:2:2008/11/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2007/07/26:vhangup:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.37:2009/02/20:vm86:2:2004/06/13::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.37:2009/02/20:vm86old:2:vm86:2:
+○:LDP man-pages:3.37:2009/09/15:vmsplice:2:2007/02/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2007/07/05:vserver:2:unimplemented:2:
+○:LDP man-pages:3.37:2010/09/26:wait:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:wait3:2:wait4:2:
+○:LDP man-pages:3.37:2010/09/20:wait4:2:2005/03/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/26:waitid:2:wait:2:
+@:LDP man-pages:3.37:2010/09/26:waitpid:2:wait:2:
+○:LDP man-pages:3.37:2010/08/29:write:2:2007/05/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/11/17:writev:2:readv:2:
+@:LDP man-pages:3.37:2008/11/20:CMSG_ALIGN:3:cmsg:3:
+@:LDP man-pages:3.37:2008/11/20:CMSG_FIRSTHDR:3:cmsg:3:
+@:LDP man-pages:3.37:2008/11/20:CMSG_NXTHDR:3:cmsg:3:
+@:LDP man-pages:3.37:2008/11/20:CMSG_SPACE:3:cmsg:3:
+※:LDP man-pages:3.37:2010/09/10:CPU_ALLOC:3:CPU_SET:3:
+※:LDP man-pages:3.37:2010/09/10:CPU_ALLOC_SIZE:3:CPU_SET:3:
+※:LDP man-pages:3.37:2010/09/10:CPU_AND:3:CPU_SET:3:
+※:LDP man-pages:3.37:2010/09/10:CPU_AND_S:3:CPU_SET:3:
+※:LDP man-pages:3.37:2010/09/10:CPU_CLR:3:CPU_SET:3:
+※:LDP man-pages:3.37:2010/09/10:CPU_CLR_S:3:CPU_SET:3:
+※:LDP man-pages:3.37:2010/09/10:CPU_COUNT:3:CPU_SET:3:
+※:LDP man-pages:3.37:2010/09/10:CPU_COUNT_S:3:CPU_SET:3:
+※:LDP man-pages:3.37:2010/09/10:CPU_EQUAL:3:CPU_SET:3:
+※:LDP man-pages:3.37:2010/09/10:CPU_EQUAL_S:3:CPU_SET:3:
+※:LDP man-pages:3.37:2010/09/10:CPU_FREE:3:CPU_SET:3:
+※:LDP man-pages:3.37:2010/09/10:CPU_ISSET:3:CPU_SET:3:
+※:LDP man-pages:3.37:2010/09/10:CPU_ISSET_S:3:CPU_SET:3:
+※:LDP man-pages:3.37:2010/09/10:CPU_OR:3:CPU_SET:3:
+※:LDP man-pages:3.37:2010/09/10:CPU_OR_S:3:CPU_SET:3:
+×:LDP man-pages:3.37:2010/09/10:CPU_SET:3:::::
+※:LDP man-pages:3.37:2010/09/10:CPU_SET_S:3:CPU_SET:3:
+※:LDP man-pages:3.37:2010/09/10:CPU_XOR:3:CPU_SET:3:
+※:LDP man-pages:3.37:2010/09/10:CPU_XOR_S:3:CPU_SET:3:
+※:LDP man-pages:3.37:2010/09/10:CPU_ZERO:3:CPU_SET:3:
+※:LDP man-pages:3.37:2010/09/10:CPU_ZERO_S:3:CPU_SET:3:
+@:LDP man-pages:3.37:2010/08/31:FD_CLR:3:select:2:
+@:LDP man-pages:3.37:2010/08/31:FD_ISSET:3:select:2:
+@:LDP man-pages:3.37:2010/08/31:FD_SET:3:select:2:
+@:LDP man-pages:3.37:2010/08/31:FD_ZERO:3:select:2:
+@:LDP man-pages:3.37:2007/07/26:HUGE_VAL:3:INFINITY:3:
+@:LDP man-pages:3.37:2007/07/26:HUGE_VALF:3:INFINITY:3:
+@:LDP man-pages:3.37:2007/07/26:HUGE_VALL:3:INFINITY:3:
+○:LDP man-pages:3.37:2007/07/26:INFINITY:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.37:1999/07/04:MB_CUR_MAX:3:1999/09/11::cz8cb01@linux.or.jp:HAYAKAWA Hitoshi:
+○:LDP man-pages:3.37:1999/07/04:MB_LEN_MAX:3:1999/09/11::cz8cb01@linux.or.jp:HAYAKAWA Hitoshi:
+@:LDP man-pages:3.37:2007/07/26:NAN:3:INFINITY:3:
+@:LDP man-pages:3.37:2001/12/16:__fbufsize:3:stdio_ext:3:
+@:LDP man-pages:3.37:2001/12/16:__flbf:3:stdio_ext:3:
+@:LDP man-pages:3.37:2001/12/16:__fpending:3:stdio_ext:3:
+@:LDP man-pages:3.37:2001/12/15:__fpurge:3:fpurge:3:
+@:LDP man-pages:3.37:2001/12/16:__freadable:3:stdio_ext:3:
+@:LDP man-pages:3.37:2001/12/16:__freading:3:stdio_ext:3:
+@:LDP man-pages:3.37:2001/12/16:__fsetlocking:3:stdio_ext:3:
+@:LDP man-pages:3.37:2001/12/16:__fwritable:3:stdio_ext:3:
+@:LDP man-pages:3.37:2001/12/16:__fwriting:3:stdio_ext:3:
+@:LDP man-pages:3.37:2010/10/13:__malloc_hook:3:malloc_hook:3:
+○:LDP man-pages:3.37:1997/03/08:__setfpucw:3:2000/09/20::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+@:LDP man-pages:3.37:2001/12/16:_flushlbf:3:stdio_ext:3:
+○:LDP man-pages:3.37:2010/09/20:a64l:3:2004/01/17::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.37:2007/12/15:abort:3:1998/02/18::tyoshino@eng.toyo.ac.jp:Takashi Yoshino:
+○:LDP man-pages:3.37:2010/09/20:abs:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.37:2010/09/20:acos:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:acosf:3:acos:3:
+○:LDP man-pages:3.37:2010/09/20:acosh:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:acoshf:3:acosh:3:
+@:LDP man-pages:3.37:2010/09/20:acoshl:3:acosh:3:
+@:LDP man-pages:3.37:2010/09/20:acosl:3:acos:3:
+@:LDP man-pages:3.37:2009/09/15:addmntent:3:getmntent:3:
+○:LDP man-pages:3.37:2008/06/14:addseverity:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.37:2008/06/22:adjtime:3:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.25=>3.37:2011/10/04:aio_cancel:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO:
+☆:LDP man-pages:3.25=>3.37:2010/10/03:aio_error:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO:
+☆:LDP man-pages:3.25=>3.37:2010/10/02:aio_fsync:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO:
+×:LDP man-pages:3.37:2010/10/06:aio_init:3:::::
+☆:LDP man-pages:3.25=>3.37:2010/10/03:aio_read:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO:
+☆:LDP man-pages:3.25=>3.37:2010/10/03:aio_return:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO:
+☆:LDP man-pages:3.25=>3.37:2010/10/02:aio_suspend:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO:
+☆:LDP man-pages:3.25=>3.37:2010/10/02:aio_write:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.37:2008/01/24:alloca:3:2002/09/19::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.37:2011/09/08:alphasort:3:scandir:3:
+@:LDP man-pages:3.37:2007/05/18:argz:3:argz_add:3:
+○:LDP man-pages:3.37:2007/05/18:argz_add:3:2003/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2007/05/18:argz_add_sep:3:argz_add:3:
+@:LDP man-pages:3.37:2007/05/18:argz_append:3:argz_add:3:
+@:LDP man-pages:3.37:2007/05/18:argz_count:3:argz_add:3:
+@:LDP man-pages:3.37:2007/05/18:argz_create:3:argz_add:3:
+@:LDP man-pages:3.37:2007/05/18:argz_create_sep:3:argz_add:3:
+@:LDP man-pages:3.37:2007/05/18:argz_delete:3:argz_add:3:
+@:LDP man-pages:3.37:2007/05/18:argz_extract:3:argz_add:3:
+@:LDP man-pages:3.37:2007/05/18:argz_insert:3:argz_add:3:
+@:LDP man-pages:3.37:2007/05/18:argz_next:3:argz_add:3:
+@:LDP man-pages:3.37:2007/05/18:argz_replace:3:argz_add:3:
+@:LDP man-pages:3.37:2007/05/18:argz_stringify:3:argz_add:3:
+@:LDP man-pages:3.37:2010/02/25:asctime:3:ctime:3:
+@:LDP man-pages:3.37:2010/02/25:asctime_r:3:ctime:3:
+○:LDP man-pages:3.37:2010/09/20:asin:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:asinf:3:asin:3:
+○:LDP man-pages:3.37:2010/09/20:asinh:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:asinhf:3:asinh:3:
+@:LDP man-pages:3.37:2010/09/20:asinhl:3:asinh:3:
+@:LDP man-pages:3.37:2010/09/20:asinl:3:asin:3:
+○:LDP man-pages:3.37:2001/12/18:asprintf:3:2002/01/14::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.37:2002/08/25:assert:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.37:2002/08/25:assert_perror:3:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2010/09/20:atan:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2010/09/20:atan2:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:atan2f:3:atan2:3:
+@:LDP man-pages:3.37:2010/09/20:atan2l:3:atan2:3:
+@:LDP man-pages:3.37:2010/09/20:atanf:3:atan:3:
+○:LDP man-pages:3.37:2010/09/11:atanh:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/11:atanhf:3:atanh:3:
+@:LDP man-pages:3.37:2010/09/11:atanhl:3:atanh:3:
+@:LDP man-pages:3.37:2010/09/20:atanl:3:atan:3:
+○:LDP man-pages:3.37:2008/12/05:atexit:3:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:1993/03/29:atof:3:1998/02/18::tyoshino@eng.toyo.ac.jp:Takashi Yoshino:
+○:LDP man-pages:3.37:2010/09/20:atoi:3:2001/02/09::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.37:2010/09/20:atol:3:atoi:3:
+@:LDP man-pages:3.37:2010/09/20:atoll:3:atoi:3:
+@:LDP man-pages:3.37:2010/09/20:atoq:3:atoi:3:
+@:LDP man-pages:3.37:2008/07/17:auth_destroy:3:rpc:3:
+@:LDP man-pages:3.37:2008/07/17:authnone_create:3:rpc:3:
+@:LDP man-pages:3.37:2008/07/17:authunix_create:3:rpc:3:
+@:LDP man-pages:3.37:2008/07/17:authunix_create_default:3:rpc:3:
+○:LDP man-pages:3.37:2008/06/14:backtrace:3:2007/10/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2008/06/14:backtrace_symbols:3:backtrace:3:
+@:LDP man-pages:3.37:2008/06/14:backtrace_symbols_fd:3:backtrace:3:
+○:LDP man-pages:3.37:2009/03/30:basename:3:2007/05/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2008/08/06:bcmp:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.37:2009/03/15:bcopy:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
+※:LDP man-pages:3.37:2010/09/10:be16toh:3:endian:3:
+※:LDP man-pages:3.37:2010/09/10:be32toh:3:endian:3:
+※:LDP man-pages:3.37:2010/09/10:be64toh:3:endian:3:
+○:LDP man-pages:3.37:2008/12/03:bindresvport:3:2007/06/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2009/03/15:bsd_signal:3:2007/06/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2003/11/01:bsearch:3:2005/02/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2004/12/26:bstring:3:2003/11/13::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.37:2011/09/22:btowc:3:1999/09/11::cz8cb01@linux.or.jp:HAYAKAWA Hitoshi:
+○:LDP man-pages:3.37:1994/08/18:btree:3:1999/08/16::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.37:2009/01/15:byteorder:3:2005/11/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2008/08/06:bzero:3:2003/03/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2007/12/26:cabs:3:2003/07/23::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2007/12/26:cabsf:3:cabs:3:
+@:LDP man-pages:3.37:2007/12/26:cabsl:3:cabs:3:
+○:LDP man-pages:3.37:2011/09/15:cacos:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2011/09/15:cacosf:3:cacos:3:
+○:LDP man-pages:3.37:2011/09/15:cacosh:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2011/09/15:cacoshf:3:cacosh:3:
+@:LDP man-pages:3.37:2011/09/15:cacoshl:3:cacosh:3:
+@:LDP man-pages:3.37:2011/09/15:cacosl:3:cacos:3:
+@:LDP man-pages:3.37:2011/09/08:calloc:3:malloc:3:
+@:LDP man-pages:3.37:2008/07/17:callrpc:3:rpc:3:
+○:LDP man-pages:3.37:2005/07/14:canonicalize_file_name:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2008/08/11:carg:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2008/08/11:cargf:3:carg:3:
+@:LDP man-pages:3.37:2008/08/11:cargl:3:carg:3:
+○:LDP man-pages:3.37:2008/08/11:casin:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2008/08/11:casinf:3:casin:3:
+○:LDP man-pages:3.37:2008/08/11:casinh:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2008/08/11:casinhf:3:casinh:3:
+@:LDP man-pages:3.37:2008/08/11:casinhl:3:casinh:3:
+@:LDP man-pages:3.37:2008/08/11:casinl:3:casin:3:
+○:LDP man-pages:3.37:2011/09/15:catan:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2011/09/15:catanf:3:catan:3:
+○:LDP man-pages:3.37:2011/09/15:catanh:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2011/09/15:catanhf:3:catanh:3:
+@:LDP man-pages:3.37:2011/09/15:catanhl:3:catanh:3:
+@:LDP man-pages:3.37:2011/09/15:catanl:3:catan:3:
+@:LDP man-pages:3.37:2001/12/14:catclose:3:catopen:3:
+○:LDP man-pages:3.37:1998/08/09:catgets:3:1999/03/01::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.37:2001/12/14:catopen:3:2002/01/14::ysato@h4.dion.ne.jp:Yuichi SATO:
+@:LDP man-pages:3.37:2007/05/18:cbc_crypt:3:des_crypt:3:
+○:LDP man-pages:3.37:2010/09/20:cbrt:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:cbrtf:3:cbrt:3:
+@:LDP man-pages:3.37:2010/09/20:cbrtl:3:cbrt:3:
+○:LDP man-pages:3.37:2008/08/11:ccos:3:2003/07/28::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2008/08/11:ccosf:3:ccos:3:
+○:LDP man-pages:3.37:2008/08/11:ccosh:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2008/08/11:ccoshf:3:ccosh:3:
+@:LDP man-pages:3.37:2008/08/11:ccoshl:3:ccosh:3:
+@:LDP man-pages:3.37:2008/08/11:ccosl:3:ccos:3:
+○:LDP man-pages:3.37:2010/09/20:ceil:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:ceilf:3:ceil:3:
+@:LDP man-pages:3.37:2010/09/20:ceill:3:ceil:3:
+○:LDP man-pages:3.37:2010/09/12:cerf:3:2005/02/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/12:cerfc:3:cerf:3:
+@:LDP man-pages:3.37:2010/09/12:cerfcf:3:cerf:3:
+@:LDP man-pages:3.37:2010/09/12:cerfcl:3:cerf:3:
+@:LDP man-pages:3.37:2010/09/12:cerff:3:cerf:3:
+@:LDP man-pages:3.37:2010/09/12:cerfl:3:cerf:3:
+○:LDP man-pages:3.37:2008/08/11:cexp:3:2003/08/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2002/07/28:cexp2:3:2005/03/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2002/07/28:cexp2f:3:cexp2:3:
+@:LDP man-pages:3.37:2002/07/28:cexp2l:3:cexp2:3:
+@:LDP man-pages:3.37:2008/08/11:cexpf:3:cexp:3:
+@:LDP man-pages:3.37:2008/08/11:cexpl:3:cexp:3:
+@:LDP man-pages:3.37:2011/09/08:cfgetispeed:3:termios:3:
+@:LDP man-pages:3.37:2011/09/08:cfgetospeed:3:termios:3:
+@:LDP man-pages:3.37:2011/09/08:cfmakeraw:3:termios:3:
+○:LDP man-pages:3.37:2007/07/26:cfree:3:2004/08/14::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.37:2011/09/08:cfsetispeed:3:termios:3:
+@:LDP man-pages:3.37:2011/09/08:cfsetospeed:3:termios:3:
+@:LDP man-pages:3.37:2011/09/08:cfsetspeed:3:termios:3:
+○:LDP man-pages:3.37:2007/12/23:cimag:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2007/12/23:cimagf:3:cimag:3:
+@:LDP man-pages:3.37:2007/12/23:cimagl:3:cimag:3:
+○:LDP man-pages:3.37:2010/10/04:clearenv:3:2002/08/20::ysato@h4.dion.ne.jp:Yuichi SATO:
+@:LDP man-pages:3.37:2008/08/29:clearerr:3:ferror:3:
+@:LDP man-pages:3.37:2008/08/29:clearerr_unlocked:3:unlocked_stdio:3:
+@:LDP man-pages:3.37:2008/07/17:clnt_broadcast:3:rpc:3:
+@:LDP man-pages:3.37:2008/07/17:clnt_call:3:rpc:3:
+@:LDP man-pages:3.37:2008/07/17:clnt_control:3:rpc:3:
+@:LDP man-pages:3.37:2008/07/17:clnt_create:3:rpc:3:
+@:LDP man-pages:3.37:2008/07/17:clnt_destroy:3:rpc:3:
+@:LDP man-pages:3.37:2008/07/17:clnt_freeres:3:rpc:3:
+@:LDP man-pages:3.37:2008/07/17:clnt_geterr:3:rpc:3:
+@:LDP man-pages:3.37:2008/07/17:clnt_pcreateerror:3:rpc:3:
+@:LDP man-pages:3.37:2008/07/17:clnt_perrno:3:rpc:3:
+@:LDP man-pages:3.37:2008/07/17:clnt_perror:3:rpc:3:
+@:LDP man-pages:3.37:2008/07/17:clnt_spcreateerror:3:rpc:3:
+@:LDP man-pages:3.37:2008/07/17:clnt_sperrno:3:rpc:3:
+@:LDP man-pages:3.37:2008/07/17:clnt_sperror:3:rpc:3:
+@:LDP man-pages:3.37:2008/07/17:clntraw_create:3:rpc:3:
+@:LDP man-pages:3.37:2008/07/17:clnttcp_create:3:rpc:3:
+@:LDP man-pages:3.37:2008/07/17:clntudp_bufcreate:3:rpc:3:
+@:LDP man-pages:3.37:2008/07/17:clntudp_create:3:rpc:3:
+○:LDP man-pages:3.37:2008/08/28:clock:3:2007/06/01::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+×:LDP man-pages:3.37:2010/09/10:clock_getcpuclockid:3:::::
+@:LDP man-pages:3.37:2010/02/03:clock_getres:3:clock_getres:2:
+@:LDP man-pages:3.37:2010/02/03:clock_gettime:3:clock_getres:2:
+@:LDP man-pages:3.37:2010/02/03:clock_settime:3:clock_getres:2:
+○:LDP man-pages:3.37:2008/08/11:clog:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2008/08/11:clog10:3:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2008/08/11:clog10f:3:clog10:3:
+@:LDP man-pages:3.37:2008/08/11:clog10l:3:clog10:3:
+○:LDP man-pages:3.37:2002/07/28:clog2:3:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2002/07/28:clog2f:3:clog2:3:
+@:LDP man-pages:3.37:2002/07/28:clog2l:3:clog2:3:
+@:LDP man-pages:3.37:2008/08/11:clogf:3:clog:3:
+@:LDP man-pages:3.37:2008/08/11:clogl:3:clog:3:
+○:LDP man-pages:3.37:2008/09/23:closedir:3:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.37:2008/11/12:closelog:3:syslog:3:
+○:LDP man-pages:3.37:2008/11/20:cmsg:3:1999/08/17::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.37:2010/02/03:confstr:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2008/08/11:conj:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2008/08/11:conjf:3:conj:3:
+@:LDP man-pages:3.37:2008/08/11:conjl:3:conj:3:
+○:LDP man-pages:3.37:2010/09/20:copysign:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:copysignf:3:copysign:3:
+@:LDP man-pages:3.37:2010/09/20:copysignl:3:copysign:3:
+○:LDP man-pages:3.37:2010/09/11:cos:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/11:cosf:3:cos:3:
+○:LDP man-pages:3.37:2010/09/20:cosh:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:coshf:3:cosh:3:
+@:LDP man-pages:3.37:2010/09/20:coshl:3:cosh:3:
+@:LDP man-pages:3.37:2010/09/11:cosl:3:cos:3:
+○:LDP man-pages:3.37:2002/07/28:cpow:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2002/07/28:cpowf:3:cpow:3:
+@:LDP man-pages:3.37:2002/07/28:cpowl:3:cpow:3:
+○:LDP man-pages:3.37:2010/06/10:cproj:3:2005/03/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/06/10:cprojf:3:cproj:3:
+@:LDP man-pages:3.37:2010/06/10:cprojl:3:cproj:3:
+○:LDP man-pages:3.37:2007/12/26:creal:3:2003/07/28::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2007/12/26:crealf:3:creal:3:
+@:LDP man-pages:3.37:2007/12/26:creall:3:creal:3:
+○:LDP man-pages:3.37:2011/09/15:crypt:3:2008/10/08::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.37:2011/09/15:crypt_r:3:crypt:3:
+○:LDP man-pages:3.37:2008/08/11:csin:3:2003/07/28::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2008/08/11:csinf:3:csin:3:
+○:LDP man-pages:3.37:2008/08/11:csinh:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2008/08/11:csinhf:3:csinh:3:
+@:LDP man-pages:3.37:2008/08/11:csinhl:3:csinh:3:
+@:LDP man-pages:3.37:2008/08/11:csinl:3:csin:3:
+○:LDP man-pages:3.37:2008/08/11:csqrt:3:2003/08/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2008/08/11:csqrtf:3:csqrt:3:
+@:LDP man-pages:3.37:2008/08/11:csqrtl:3:csqrt:3:
+○:LDP man-pages:3.37:2008/08/11:ctan:3:2005/02/21::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2008/08/11:ctanf:3:ctan:3:
+○:LDP man-pages:3.37:2008/08/11:ctanh:3:2005/02/21::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2008/08/11:ctanhf:3:ctanh:3:
+@:LDP man-pages:3.37:2008/08/11:ctanhl:3:ctanh:3:
+@:LDP man-pages:3.37:2008/08/11:ctanl:3:ctan:3:
+○:LDP man-pages:3.37:2007/07/26:ctermid:3:1997/2/10::nagoya@cc.hit-u.ac.jp:NAGOYA Hiroaki:
+○:LDP man-pages:3.37:2010/02/25:ctime:3:2008/11/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/02/25:ctime_r:3:ctime:3:
+@:LDP man-pages:3.37:2008/06/29:cuserid:3:getlogin:3:
+○:LDP man-pages:3.37:2009/12/05:daemon:3:2002/01/14::ysato@h4.dion.ne.jp:Yuichi SATO:
+@:LDP man-pages:3.37:2010/02/25:daylight:3:tzset:3:
+@:LDP man-pages:3.37:1994/01/02:db:3:dbopen:3:
+○:LDP man-pages:3.37:1994/01/02:dbopen:3:1999/08/19::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.37:2007/05/18:des_crypt:3:2004/08/14::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.37:2007/05/18:des_setparity:3:des_crypt:3:
+○:LDP man-pages:3.37:2010/02/25:difftime:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2010/09/26:dirfd:3:2003/10/15::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.37:2009/03/30:dirname:3:basename:3:
+○:LDP man-pages:3.37:2010/09/20:div:3:2004/06/13::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.37:2007/05/18:dl_iterate_phdr:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.37:2008/12/06:dladdr:3:dlopen:3:
+@:LDP man-pages:3.37:2008/12/06:dlclose:3:dlopen:3:
+@:LDP man-pages:3.37:2008/12/06:dlerror:3:dlopen:3:
+○:LDP man-pages:3.37:2008/12/06:dlopen:3:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2008/12/06:dlsym:3:dlopen:3:
+@:LDP man-pages:3.37:2008/12/06:dlvsym:3:dlopen:3:
+@:LDP man-pages:3.37:2010/06/17:dn_comp:3:resolver:3:
+@:LDP man-pages:3.37:2010/06/17:dn_expand:3:resolver:3:
+○:LDP man-pages:3.37:2010/09/15:dprintf:3:2002/01/14::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.37:2007/07/26:drand48:3:1997/01/20::tyoshino@eng.toyo.ac.jp:YOSHINO Takashi:
+○:LDP man-pages:3.37:2007/07/26:drand48_r:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.37:2010/09/20:drem:3:remainder:3:
+@:LDP man-pages:3.37:2010/09/20:dremf:3:remainder:3:
+@:LDP man-pages:3.37:2010/09/20:dreml:3:remainder:3:
+○:LDP man-pages:3.37:2010/09/22:dysize:3:2002/01/06::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+@:LDP man-pages:3.37:2010/11/01:eaccess:3:euidaccess:3:
+@:LDP man-pages:3.37:2007/05/18:ecb_crypt:3:des_crypt:3:
+○:LDP man-pages:3.37:2010/09/20:ecvt:3:2009/05/14::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.37:2007/07/26:ecvt_r:3:2002/09/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2008/07/17:edata:3:end:3:
+○:LDP man-pages:3.37:2003/04/04:encrypt:3:2004/02/06::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.37:2003/04/04:encrypt_r:3:encrypt:3:
+○:LDP man-pages:3.37:2008/07/17:end:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2003/09/09:endaliasent:3:setaliasent:3:
+@:LDP man-pages:3.37:2002/02/28:endfsent:3:getfsent:3:
+@:LDP man-pages:3.37:2010/10/21:endgrent:3:getgrent:3:
+@:LDP man-pages:3.37:2010/10/04:endhostent:3:gethostbyname:3:
+×:LDP man-pages:3.37:2010/09/10:endian:3:::::
+@:LDP man-pages:3.37:2009/09/15:endmntent:3:getmntent:3:
+@:LDP man-pages:3.37:2008/08/19:endnetent:3:getnetent:3:
+@:LDP man-pages:3.37:2007/07/26:endnetgrent:3:setnetgrent:3:
+@:LDP man-pages:3.37:2008/08/19:endprotoent:3:getprotoent:3:
+@:LDP man-pages:3.37:2010/10/21:endpwent:3:getpwent:3:
+@:LDP man-pages:3.37:2008/08/19:endrpcent:3:getrpcent:3:
+@:LDP man-pages:3.37:2008/08/19:endservent:3:getservent:3:
+@:LDP man-pages:3.37:2010/02/25:endspent:3:getspnam:3:
+@:LDP man-pages:3.37:2002/07/18:endttyent:3:getttyent:3:
+@:LDP man-pages:3.37:2007/07/26:endusershell:3:getusershell:3:
+@:LDP man-pages:3.37:2008/06/29:endutent:3:getutent:3:
+@:LDP man-pages:3.37:2008/06/29:endutxent:3:getutent:3:
+@:LDP man-pages:3.37:2007/05/18:envz:3:envz_add:3:
+○:LDP man-pages:3.37:2007/05/18:envz_add:3:2003/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2007/05/18:envz_entry:3:envz_add:3:
+@:LDP man-pages:3.37:2007/05/18:envz_get:3:envz_add:3:
+@:LDP man-pages:3.37:2007/05/18:envz_merge:3:envz_add:3:
+@:LDP man-pages:3.37:2007/05/18:envz_remove:3:envz_add:3:
+@:LDP man-pages:3.37:2007/05/18:envz_strip:3:envz_add:3:
+@:LDP man-pages:3.37:2007/07/26:erand48:3:drand48:3:
+@:LDP man-pages:3.37:2007/07/26:erand48_r:3:drand48_r:3:
+○:LDP man-pages:3.37:2010/09/20:erf:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2010/09/20:erfc:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:erfcf:3:erfc:3:
+@:LDP man-pages:3.37:2010/09/20:erfcl:3:erfc:3:
+@:LDP man-pages:3.37:2010/09/20:erff:3:erf:3:
+@:LDP man-pages:3.37:2010/09/20:erfl:3:erf:3:
+○:LDP man-pages:3.37:2011/09/15:err:3:2003/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2008/07/09:errno:3:2006/07/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2010/08/29:error:3:2006/08/19::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.37:2010/08/29:error_at_line:3:error:3:
+@:LDP man-pages:3.37:2010/08/29:error_message_count:3:error:3:
+@:LDP man-pages:3.37:2010/08/29:error_one_per_line:3:error:3:
+@:LDP man-pages:3.37:2010/08/29:error_print_progname:3:error:3:
+@:LDP man-pages:3.37:2011/09/15:errx:3:err:3:
+@:LDP man-pages:3.37:2008/07/17:etext:3:end:3:
+○:LDP man-pages:3.37:2002/07/20:ether_aton:3:2002/09/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2002/07/20:ether_aton_r:3:ether_aton:3:
+@:LDP man-pages:3.37:2002/07/20:ether_hostton:3:ether_aton:3:
+@:LDP man-pages:3.37:2002/07/20:ether_line:3:ether_aton:3:
+@:LDP man-pages:3.37:2002/07/20:ether_ntoa:3:ether_aton:3:
+@:LDP man-pages:3.37:2002/07/20:ether_ntoa_r:3:ether_aton:3:
+@:LDP man-pages:3.37:2002/07/20:ether_ntohost:3:ether_aton:3:
+☆:LDP man-pages:3.29=>3.37:2010/11/01:euidaccess:3:2007/06/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/08/30:eventfd_read:3:eventfd:2:
+@:LDP man-pages:3.37:2010/08/30:eventfd_write:3:eventfd:2:
+○:LDP man-pages:3.37:2010/09/25:exec:3:2005/03/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/25:execl:3:exec:3:
+@:LDP man-pages:3.37:2010/09/25:execle:3:exec:3:
+@:LDP man-pages:3.37:2010/09/25:execlp:3:exec:3:
+@:LDP man-pages:3.37:2010/09/25:execv:3:exec:3:
+@:LDP man-pages:3.37:2010/09/25:execvp:3:exec:3:
+@:LDP man-pages:3.37:2010/09/25:execvpe:3:exec:3:
+○:LDP man-pages:3.37:2009/09/20:exit:3:2007/06/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2010/09/20:exp:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2008/08/11:exp10:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2008/08/11:exp10f:3:exp10:3:
+@:LDP man-pages:3.37:2008/08/11:exp10l:3:exp10:3:
+○:LDP man-pages:3.37:2010/09/20:exp2:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:exp2f:3:exp2:3:
+@:LDP man-pages:3.37:2010/09/20:exp2l:3:exp2:3:
+@:LDP man-pages:3.37:2010/09/20:expf:3:exp:3:
+@:LDP man-pages:3.37:2010/09/20:expl:3:exp:3:
+○:LDP man-pages:3.37:2010/09/12:expm1:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/12:expm1f:3:expm1:3:
+@:LDP man-pages:3.37:2010/09/12:expm1l:3:expm1:3:
+○:LDP man-pages:3.37:2010/09/20:fabs:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:fabsf:3:fabs:3:
+@:LDP man-pages:3.37:2010/09/20:fabsl:3:fabs:3:
+○:LDP man-pages:3.37:2009/02/23:fclose:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.37:2006/12/27:fcloseall:3:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:fcvt:3:ecvt:3:
+@:LDP man-pages:3.37:2007/07/26:fcvt_r:3:ecvt_r:3:
+○:LDP man-pages:3.37:2010/09/20:fdim:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:fdimf:3:fdim:3:
+@:LDP man-pages:3.37:2010/09/20:fdiml:3:fdim:3:
+@:LDP man-pages:3.37:2009/02/23:fdopen:3:fopen:3:
+@:LDP man-pages:3.37:2010/06/20:fdopendir:3:opendir:3:
+@:LDP man-pages:3.37:2010/10/31:feclearexcept:3:fenv:3:
+@:LDP man-pages:3.37:2010/10/31:fedisableexcept:3:fenv:3:
+@:LDP man-pages:3.37:2010/10/31:feenableexcept:3:fenv:3:
+@:LDP man-pages:3.37:2010/10/31:fegetenv:3:fenv:3:
+@:LDP man-pages:3.37:2010/10/31:fegetexcept:3:fenv:3:
+@:LDP man-pages:3.37:2010/10/31:fegetexceptflag:3:fenv:3:
+@:LDP man-pages:3.37:2010/10/31:fegetround:3:fenv:3:
+@:LDP man-pages:3.37:2010/10/31:feholdexcept:3:fenv:3:
+○:LDP man-pages:3.37:2010/10/31:fenv:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2008/08/29:feof:3:ferror:3:
+@:LDP man-pages:3.37:2008/08/29:feof_unlocked:3:unlocked_stdio:3:
+@:LDP man-pages:3.37:2010/10/31:feraiseexcept:3:fenv:3:
+○:LDP man-pages:3.37:2008/08/29:ferror:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.37:2008/08/29:ferror_unlocked:3:unlocked_stdio:3:
+@:LDP man-pages:3.37:2010/10/31:fesetenv:3:fenv:3:
+@:LDP man-pages:3.37:2010/10/31:fesetexceptflag:3:fenv:3:
+@:LDP man-pages:3.37:2010/10/31:fesetround:3:fenv:3:
+@:LDP man-pages:3.37:2010/10/31:fetestexcept:3:fenv:3:
+@:LDP man-pages:3.37:2010/10/31:feupdateenv:3:fenv:3:
+○:LDP man-pages:3.37:2010/09/15:fexecve:3:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2009/09/06:fflush:3:2001/11/09::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.37:2008/08/29:fflush_unlocked:3:unlocked_stdio:3:
+○:LDP man-pages:3.37:2010/09/20:ffs:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.37:2010/09/20:ffsl:3:ffs:3:
+@:LDP man-pages:3.37:2010/09/20:ffsll:3:ffs:3:
+@:LDP man-pages:3.37:2012/01/18:fgetc:3:gets:3:
+@:LDP man-pages:3.37:2008/08/29:fgetc_unlocked:3:unlocked_stdio:3:
+○:LDP man-pages:3.37:2008/07/10:fgetgrent:3:1997/12/19::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
+@:LDP man-pages:3.37:2010/10/21:fgetgrent_r:3:getgrent_r:3:
+@:LDP man-pages:3.37:1993/11/29:fgetpos:3:fseek:3:
+○:LDP man-pages:3.37:2008/07/10:fgetpwent:3:1997/12/18::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
+@:LDP man-pages:3.37:2010/10/21:fgetpwent_r:3:getpwent_r:3:
+@:LDP man-pages:3.37:2012/01/18:fgets:3:gets:3:
+@:LDP man-pages:3.37:2008/08/29:fgets_unlocked:3:unlocked_stdio:3:
+@:LDP man-pages:3.37:2010/02/25:fgetspent:3:getspnam:3:
+@:LDP man-pages:3.37:2010/02/25:fgetspent_r:3:getspnam:3:
+○:LDP man-pages:3.37:1999/07/25:fgetwc:3:2001/11/09::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.37:2008/08/29:fgetwc_unlocked:3:unlocked_stdio:3:
+○:LDP man-pages:3.37:2011/09/28:fgetws:3:2001/11/09::ysato@h4.dion.ne.jp:Yuichi SATO:
+@:LDP man-pages:3.37:2008/08/29:fgetws_unlocked:3:unlocked_stdio:3:
+@:LDP man-pages:3.37:2008/08/29:fileno:3:ferror:3:
+@:LDP man-pages:3.37:2008/08/29:fileno_unlocked:3:unlocked_stdio:3:
+○:LDP man-pages:3.37:2008/08/05:finite:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2008/08/05:finitef:3:finite:3:
+@:LDP man-pages:3.37:2008/08/05:finitel:3:finite:3:
+○:LDP man-pages:3.37:2008/08/29:flockfile:3:2001/11/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2010/09/20:floor:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:floorf:3:floor:3:
+@:LDP man-pages:3.37:2010/09/20:floorl:3:floor:3:
+○:LDP man-pages:3.37:2010/09/20:fma:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:fmaf:3:fma:3:
+@:LDP man-pages:3.37:2010/09/20:fmal:3:fma:3:
+○:LDP man-pages:3.37:2010/09/20:fmax:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:fmaxf:3:fmax:3:
+@:LDP man-pages:3.37:2010/09/20:fmaxl:3:fmax:3:
+○:LDP man-pages:3.37:2010/09/15:fmemopen:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2010/09/20:fmin:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:fminf:3:fmin:3:
+@:LDP man-pages:3.37:2010/09/20:fminl:3:fmin:3:
+○:LDP man-pages:3.37:2010/09/20:fmod:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:fmodf:3:fmod:3:
+@:LDP man-pages:3.37:2010/09/20:fmodl:3:fmod:3:
+○:LDP man-pages:3.37:2008/06/14:fmtmsg:3:2004/08/14::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.37:2000/10/15:fnmatch:3:2006/03/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2009/02/23:fopen:3:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+×:LDP man-pages:3.37:2008/12/05:fopencookie:3:::::
+@:LDP man-pages:3.37:2010/06/13:forkpty:3:openpty:3:
+○:LDP man-pages:3.37:1993/04/04:fpathconf:3:1998/03/20::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.37:2010/09/20:fpclassify:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2011/09/28:fprintf:3:printf:3:
+○:LDP man-pages:3.37:2001/12/15:fpurge:3:2002/01/14::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+@:LDP man-pages:3.37:2011/09/28:fputc:3:puts:3:
+@:LDP man-pages:3.37:2008/08/29:fputc_unlocked:3:unlocked_stdio:3:
+@:LDP man-pages:3.37:2011/09/28:fputs:3:puts:3:
+@:LDP man-pages:3.37:2008/08/29:fputs_unlocked:3:unlocked_stdio:3:
+○:LDP man-pages:3.37:1999/07/25:fputwc:3:2001/11/09::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.37:2008/08/29:fputwc_unlocked:3:unlocked_stdio:3:
+○:LDP man-pages:3.37:2011/09/28:fputws:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.37:2008/08/29:fputws_unlocked:3:unlocked_stdio:3:
+○:LDP man-pages:3.37:1996/05/17:fread:3:2001/11/09::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.37:2008/08/29:fread_unlocked:3:unlocked_stdio:3:
+@:LDP man-pages:3.37:2011/09/08:free:3:malloc:3:
+@:LDP man-pages:3.37:2010/09/27:freeaddrinfo:3:getaddrinfo:3:
+@:LDP man-pages:3.37:2010/09/04:freehostent:3:getipnodebyname:3:
+※:LDP man-pages:3.37:2010/10/06:freeifaddrs:3:getifaddrs:3:
+@:LDP man-pages:3.37:2009/02/23:freopen:3:fopen:3:
+○:LDP man-pages:3.37:2010/09/20:frexp:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:frexpf:3:frexp:3:
+@:LDP man-pages:3.37:2010/09/20:frexpl:3:frexp:3:
+@:LDP man-pages:3.37:2011/09/28:fscanf:3:scanf:3:
+○:LDP man-pages:3.37:1993/11/29:fseek:3:1998/04/27::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.37:2001/11/05:fseeko:3:2006/01/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:1993/11/29:fsetpos:3:fseek:3:
+@:LDP man-pages:3.37:2003/08/22:fstatvfs:3:statvfs:3:
+@:LDP man-pages:3.37:1993/11/29:ftell:3:fseek:3:
+@:LDP man-pages:3.37:2001/11/05:ftello:3:fseeko:3:
+○:LDP man-pages:3.37:2010/02/25:ftime:3:2008/10/08::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.37:2001/11/28:ftok:3:2002/01/06::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+@:LDP man-pages:3.37:2008/08/29:ftrylockfile:3:flockfile:3:
+○:LDP man-pages:3.37:2007/12/28:fts:3:2000/09/05::sato@complex.eng.hokudai.ac.jp:Yuichi SATO:
+@:LDP man-pages:3.37:2007/12/28:fts_children:3:fts:3:
+@:LDP man-pages:3.37:2007/12/28:fts_close:3:fts:3:
+@:LDP man-pages:3.37:2007/12/28:fts_open:3:fts:3:
+@:LDP man-pages:3.37:2007/12/28:fts_read:3:fts:3:
+@:LDP man-pages:3.37:2007/12/28:fts_set:3:fts:3:
+○:LDP man-pages:3.37:2010/09/20:ftw:3:2006/07/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2008/08/29:funlockfile:3:flockfile:3:
+※:LDP man-pages:3.37:2009/12/13:futimens:3:utimensat:2:
+○:LDP man-pages:3.37:2008/04/07:futimes:3:2006/07/31::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2011/09/17:fwide:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+@:LDP man-pages:3.37:2011/09/17:fwprintf:3:wprintf:3:
+@:LDP man-pages:3.37:1996/05/17:fwrite:3:fread:3:
+@:LDP man-pages:3.37:2008/08/29:fwrite_unlocked:3:unlocked_stdio:3:
+※:LDP man-pages:3.37:2010/09/27:gai_cancel:3:getaddrinfo_a:3:
+※:LDP man-pages:3.37:2010/09/27:gai_error:3:getaddrinfo_a:3:
+@:LDP man-pages:3.37:2010/09/27:gai_strerror:3:getaddrinfo:3:
+※:LDP man-pages:3.37:2010/09/27:gai_suspend:3:getaddrinfo_a:3:
+○:LDP man-pages:3.37:2008/08/05:gamma:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2008/08/05:gammaf:3:gamma:3:
+@:LDP man-pages:3.37:2008/08/05:gammal:3:gamma:3:
+○:LDP man-pages:3.37:2010/09/20:gcvt:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:get_current_dir_name:3:getcwd:3:
+@:LDP man-pages:3.37:2008/07/17:get_myaddress:3:rpc:3:
+○:LDP man-pages:3.37:2010/09/27:getaddrinfo:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+×:LDP man-pages:3.37:2010/09/27:getaddrinfo_a:3:::::
+@:LDP man-pages:3.37:2003/09/09:getaliasbyname:3:setaliasent:3:
+@:LDP man-pages:3.37:2003/09/09:getaliasbyname_r:3:setaliasent:3:
+@:LDP man-pages:3.37:2003/09/09:getaliasent:3:setaliasent:3:
+@:LDP man-pages:3.37:2003/09/09:getaliasent_r:3:setaliasent:3:
+@:LDP man-pages:3.37:2012/01/18:getc:3:gets:3:
+@:LDP man-pages:3.37:2008/08/29:getc_unlocked:3:unlocked_stdio:3:
+@:LDP man-pages:3.37:2012/01/18:getchar:3:gets:3:
+@:LDP man-pages:3.37:2008/08/29:getchar_unlocked:3:unlocked_stdio:3:
+○:LDP man-pages:3.37:2010/09/20:getcwd:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.37:2010/09/20:getdate:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:getdate_err:3:getdate:3:
+@:LDP man-pages:3.37:2010/09/20:getdate_r:3:getdate:3:
+@:LDP man-pages:3.37:2010/06/12:getdelim:3:getline:3:
+○:LDP man-pages:3.37:2007/07/26:getdirentries:3:1998/04/30::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.37:2008/03/17:getenv:3:2003/09/28::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.37:2002/02/28:getfsent:3:2002/08/07::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+@:LDP man-pages:3.37:2002/02/28:getfsfile:3:getfsent:3:
+@:LDP man-pages:3.37:2002/02/28:getfsspec:3:getfsent:3:
+○:LDP man-pages:3.37:2010/10/21:getgrent:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2010/10/21:getgrent_r:3:2004/08/14::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.37:2010/10/21:getgrgid:3:getgrnam:3:
+@:LDP man-pages:3.37:2010/10/21:getgrgid_r:3:getgrnam:3:
+☆:LDP man-pages:3.29=>3.37:2010/10/21:getgrnam:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/10/21:getgrnam_r:3:getgrnam:3:
+○:LDP man-pages:3.37:2008/07/03:getgrouplist:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/10/04:gethostbyaddr:3:gethostbyname:3:
+@:LDP man-pages:3.37:2010/10/04:gethostbyaddr_r:3:gethostbyname:3:
+○:LDP man-pages:3.37:2010/10/04:gethostbyname:3:2007/06/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/10/04:gethostbyname2:3:gethostbyname:3:
+@:LDP man-pages:3.37:2010/10/04:gethostbyname2_r:3:gethostbyname:3:
+@:LDP man-pages:3.37:2010/10/04:gethostbyname_r:3:gethostbyname:3:
+@:LDP man-pages:3.37:2010/10/04:gethostent:3:gethostbyname:3:
+@:LDP man-pages:3.37:2010/10/04:gethostent_r:3:gethostbyname:3:
+○:LDP man-pages:3.37:2010/09/20:gethostid:3:2009/01/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+×:LDP man-pages:3.37:2010/10/06:getifaddrs:3:::::
+@:LDP man-pages:3.37:2010/09/04:getipnodebyaddr:3:getipnodebyname:3:
+○:LDP man-pages:3.37:2010/09/04:getipnodebyname:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.37:2010/06/12:getline:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2007/12/08:getloadavg:3:2002/01/21::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.37:2008/06/29:getlogin:3:2005/03/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2008/06/29:getlogin_r:3:getlogin:3:
+○:LDP man-pages:3.37:2009/09/15:getmntent:3:2005/03/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2009/09/15:getmntent_r:3:getmntent:3:
+○:LDP man-pages:3.37:2009/12/03:getnameinfo:3:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2008/08/19:getnetbyaddr:3:getnetent:3:
+※:LDP man-pages:3.37:2010/09/10:getnetbyaddr_r:3:getnetent_r:3:
+@:LDP man-pages:3.37:2008/08/19:getnetbyname:3:getnetent:3:
+※:LDP man-pages:3.37:2010/09/10:getnetbyname_r:3:getnetent_r:3:
+○:LDP man-pages:3.37:2008/08/19:getnetent:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+×:LDP man-pages:3.37:2010/09/10:getnetent_r:3:::::
+@:LDP man-pages:3.37:2007/07/26:getnetgrent:3:setnetgrent:3:
+@:LDP man-pages:3.37:2007/07/26:getnetgrent_r:3:setnetgrent:3:
+○:LDP man-pages:3.37:2010/11/01:getopt:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/11/01:getopt_long:3:getopt:3:
+@:LDP man-pages:3.37:2010/11/01:getopt_long_only:3:getopt:3:
+○:LDP man-pages:3.37:2010/09/20:getpass:3:2001/02/14::nakano@apm.seikei.ac.jp:NAKANO Takeo:Older ver. is in obsolete/
+@:LDP man-pages:3.37:2008/08/19:getprotobyname:3:getprotoent:3:
+※:LDP man-pages:3.37:2010/09/10:getprotobyname_r:3:getprotoent_r:3:
+@:LDP man-pages:3.37:2008/08/19:getprotobynumber:3:getprotoent:3:
+※:LDP man-pages:3.37:2010/09/10:getprotobynumber_r:3:getprotoent_r:3:
+○:LDP man-pages:3.37:2008/08/19:getprotoent:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+×:LDP man-pages:3.37:2010/09/10:getprotoent_r:3:::::
+○:LDP man-pages:3.37:2010/09/10:getpt:3:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2010/10/21:getpw:3:2008/10/08::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.37:2010/10/21:getpwent:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2010/10/21:getpwent_r:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.29=>3.37:2010/10/21:getpwnam:3:2005/10/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/10/21:getpwnam_r:3:getpwnam:3:
+@:LDP man-pages:3.37:2010/10/21:getpwuid:3:getpwnam:3:
+@:LDP man-pages:3.37:2010/10/21:getpwuid_r:3:getpwnam:3:
+@:LDP man-pages:3.37:2008/08/19:getrpcbyname:3:getrpcent:3:
+※:LDP man-pages:3.37:2010/09/10:getrpcbyname_r:3:getrpcent_r:3:
+@:LDP man-pages:3.37:2008/08/19:getrpcbynumber:3:getrpcent:3:
+※:LDP man-pages:3.37:2010/09/10:getrpcbynumber_r:3:getrpcent_r:3:
+○:LDP man-pages:3.37:2008/08/19:getrpcent:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+×:LDP man-pages:3.37:2010/09/10:getrpcent_r:3:::::
+○:LDP man-pages:3.37:1987/10/06:getrpcport:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+☆:LDP man-pages:3.35=>3.37:2012/01/18:gets:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2008/08/19:getservbyname:3:getservent:3:
+※:LDP man-pages:3.37:2010/09/10:getservbyname_r:3:getservent_r:3:
+@:LDP man-pages:3.37:2008/08/19:getservbyport:3:getservent:3:
+※:LDP man-pages:3.37:2010/09/10:getservbyport_r:3:getservent_r:3:
+○:LDP man-pages:3.37:2008/08/19:getservent:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+×:LDP man-pages:3.37:2010/09/10:getservent_r:3:::::
+@:LDP man-pages:3.37:2010/02/25:getspent:3:getspnam:3:
+@:LDP man-pages:3.37:2010/02/25:getspent_r:3:getspnam:3:
+○:LDP man-pages:3.37:2010/02/25:getspnam:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/02/25:getspnam_r:3:getspnam:3:
+○:LDP man-pages:3.37:2010/09/26:getsubopt:3:2007/06/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2002/07/18:getttyent:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.37:2002/07/18:getttynam:3:getttyent:3:
+○:LDP man-pages:3.37:2010/09/10:getumask:3:2003/02/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2007/07/26:getusershell:3:1998/02/05::ishioka@dad.eec.toshiba.co.jp:ISHIOKA Takashi:
+○:LDP man-pages:3.37:2008/06/29:getutent:3:2005/03/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2008/06/29:getutent_r:3:getutent:3:
+@:LDP man-pages:3.37:2008/06/29:getutid:3:getutent:3:
+@:LDP man-pages:3.37:2008/06/29:getutid_r:3:getutent:3:
+@:LDP man-pages:3.37:2008/06/29:getutline:3:getutent:3:
+@:LDP man-pages:3.37:2008/06/29:getutline_r:3:getutent:3:
+×:LDP man-pages:3.37:2010/09/10:getutmp:3:::::
+※:LDP man-pages:3.37:2010/09/10:getutmpx:3:getutmp:3:
+@:LDP man-pages:3.37:2008/06/29:getutxent:3:getutent:3:
+@:LDP man-pages:3.37:2008/06/29:getutxid:3:getutent:3:
+@:LDP man-pages:3.37:2008/06/29:getutxline:3:getutent:3:
+○:LDP man-pages:3.37:2010/09/26:getw:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.37:1999/07/25:getwc:3:fgetwc:3:
+@:LDP man-pages:3.37:2008/08/29:getwc_unlocked:3:unlocked_stdio:3:
+○:LDP man-pages:3.37:1999/07/25:getwchar:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.37:2008/08/29:getwchar_unlocked:3:unlocked_stdio:3:
+@:LDP man-pages:3.37:2010/09/20:getwd:3:getcwd:3:
+○:LDP man-pages:3.37:2007/10/10:glob:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.37:2007/10/10:globfree:3:glob:3:
+@:LDP man-pages:3.37:2010/02/25:gmtime:3:ctime:3:
+@:LDP man-pages:3.37:2010/02/25:gmtime_r:3:ctime:3:
+※:LDP man-pages:3.37:2010/09/10:gnu_dev_major:3:makedev:3:
+※:LDP man-pages:3.37:2010/09/10:gnu_dev_makedev:3:makedev:3:
+※:LDP man-pages:3.37:2010/09/10:gnu_dev_minor:3:makedev:3:
+@:LDP man-pages:3.37:2010/09/10:gnu_get_libc_release:3:gnu_get_libc_version:3:
+○:LDP man-pages:3.37:2010/09/10:gnu_get_libc_version:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2008/06/14:grantpt:3:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2007/07/26:gsignal:3:2003/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/10/04:h_errno:3:gethostbyname:3:
+○:LDP man-pages:3.37:1994/08/18:hash:3:1999/08/17::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+@:LDP man-pages:3.37:2009/09/15:hasmntopt:3:getmntent:3:
+@:LDP man-pages:3.37:2011/09/10:hcreate:3:hsearch:3:
+@:LDP man-pages:3.37:2011/09/10:hcreate_r:3:hsearch:3:
+@:LDP man-pages:3.37:2011/09/10:hdestroy:3:hsearch:3:
+@:LDP man-pages:3.37:2011/09/10:hdestroy_r:3:hsearch:3:
+@:LDP man-pages:3.37:2010/10/04:herror:3:gethostbyname:3:
+○:LDP man-pages:3.37:2011/09/10:hsearch:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2011/09/10:hsearch_r:3:hsearch:3:
+@:LDP man-pages:3.37:2010/10/04:hstrerror:3:gethostbyname:3:
+※:LDP man-pages:3.37:2010/09/10:htobe16:3:endian:3:
+※:LDP man-pages:3.37:2010/09/10:htobe32:3:endian:3:
+※:LDP man-pages:3.37:2010/09/10:htobe64:3:endian:3:
+※:LDP man-pages:3.37:2010/09/10:htole16:3:endian:3:
+※:LDP man-pages:3.37:2010/09/10:htole32:3:endian:3:
+※:LDP man-pages:3.37:2010/09/10:htole64:3:endian:3:
+@:LDP man-pages:3.37:2009/01/15:htonl:3:byteorder:3:
+@:LDP man-pages:3.37:2009/01/15:htons:3:byteorder:3:
+○:LDP man-pages:3.37:2010/09/20:hypot:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:hypotf:3:hypot:3:
+@:LDP man-pages:3.37:2010/09/20:hypotl:3:hypot:3:
+○:LDP man-pages:3.37:2008/09/08:iconv:3:2000/07/11::sato@complex.eng.hokudai.ac.jp:Yuichi SATO:
+○:LDP man-pages:3.37:2008/08/11:iconv_close:3:2000/07/11::sato@complex.eng.hokudai.ac.jp:Yuichi SATO:
+○:LDP man-pages:3.37:2008/08/11:iconv_open:3:2007/06/01::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2010/09/20:ilogb:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:ilogbf:3:ilogb:3:
+@:LDP man-pages:3.37:2010/09/20:ilogbl:3:ilogb:3:
+@:LDP man-pages:3.37:2010/09/20:imaxabs:3:abs:3:
+@:LDP man-pages:3.37:2010/09/20:imaxdiv:3:div:3:
+○:LDP man-pages:3.37:2011/09/21:index:3:1997/12/12::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
+○:LDP man-pages:3.37:2008/06/19:inet:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2008/06/19:inet_addr:3:inet:3:
+@:LDP man-pages:3.37:2008/06/19:inet_aton:3:inet:3:
+@:LDP man-pages:3.37:2008/06/19:inet_lnaof:3:inet:3:
+@:LDP man-pages:3.37:2008/06/19:inet_makeaddr:3:inet_addr:3:
+@:LDP man-pages:3.37:2008/06/19:inet_netof:3:inet:3:
+@:LDP man-pages:3.37:2008/06/19:inet_network:3:inet:3:
+@:LDP man-pages:3.37:2008/06/19:inet_ntoa:3:inet:3:
+○:LDP man-pages:3.37:2008/11/11:inet_ntop:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2008/06/18:inet_pton:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:1993/06/02:infnan:3:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.37:2007/07/26:initgroups:3:2005/02/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:initstate:3:random:3:
+@:LDP man-pages:3.37:2008/03/07:initstate_r:3:random_r:3:
+@:LDP man-pages:3.37:2007/07/26:innetgr:3:setnetgrent:3:
+☆:LDP man-pages:3.25=>3.37:2010/09/09:insque:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.37:2010/11/11:intro:3:2008/02/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2007/12/28:iruserok:3:rcmd:3:
+@:LDP man-pages:3.37:2010/09/20:isalnum:3:isalpha:3:
+○:LDP man-pages:3.37:2010/09/20:isalpha:3:2007/05/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:isascii:3:isalpha:3:
+○:LDP man-pages:3.37:2008/12/03:isatty:3:1997/2/10::nagoya@cc.hit-u.ac.jp:NAGOYA Hiroaki:
+@:LDP man-pages:3.37:2010/09/20:isblank:3:isalpha:3:
+@:LDP man-pages:3.37:2010/09/20:iscntrl:3:isalpha:3:
+@:LDP man-pages:3.37:2010/09/20:isdigit:3:isalpha:3:
+@:LDP man-pages:3.37:2010/09/20:isfinite:3:fpclassify:3:
+@:LDP man-pages:3.37:2010/09/20:isgraph:3:isalpha:3:
+○:LDP man-pages:3.37:2010/09/20:isgreater:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:isgreaterequal:3:isgreater:3:
+@:LDP man-pages:3.37:2010/09/20:isinf:3:fpclassify:3:
+@:LDP man-pages:3.37:2008/08/05:isinff:3:finite:3:
+@:LDP man-pages:3.37:2008/08/05:isinfl:3:finite:3:
+@:LDP man-pages:3.37:2010/09/20:isless:3:isgreater:3:
+@:LDP man-pages:3.37:2010/09/20:islessequal:3:isgreater:3:
+@:LDP man-pages:3.37:2010/09/20:islessgreater:3:isgreater:3:
+@:LDP man-pages:3.37:2010/09/20:islower:3:isalpha:3:
+@:LDP man-pages:3.37:2010/09/20:isnan:3:fpclassify:3:
+@:LDP man-pages:3.37:2008/08/05:isnanf:3:finite:3:
+@:LDP man-pages:3.37:2008/08/05:isnanl:3:finite:3:
+@:LDP man-pages:3.37:2010/09/20:isnormal:3:fpclassify:3:
+@:LDP man-pages:3.37:2010/09/20:isprint:3:isalpha:3:
+@:LDP man-pages:3.37:2010/09/20:ispunct:3:isalpha:3:
+@:LDP man-pages:3.37:2010/09/20:isspace:3:isalpha:3:
+@:LDP man-pages:3.37:2010/09/20:isunordered:3:isgreater:3:
+@:LDP man-pages:3.37:2010/09/20:isupper:3:isalpha:3:
+○:LDP man-pages:3.37:1999/07/25:iswalnum:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.37:1999/07/25:iswalpha:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.37:2010/09/20:iswblank:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.37:1999/07/25:iswcntrl:3:1999/09/12::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.37:1999/07/25:iswctype:3:1999/09/12::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.37:1999/07/25:iswdigit:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.37:1999/07/25:iswgraph:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.37:1999/07/25:iswlower:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.37:1999/07/25:iswprint:3:1999/09/12::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.37:1999/07/25:iswpunct:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.37:1999/07/25:iswspace:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.37:1999/07/25:iswupper:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.37:1999/07/25:iswxdigit:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.37:2010/09/20:isxdigit:3:isalpha:3:
+○:LDP man-pages:3.37:2010/09/20:j0:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:j0f:3:j0:3:
+@:LDP man-pages:3.37:2010/09/20:j0l:3:j0:3:
+@:LDP man-pages:3.37:2010/09/20:j1:3:j0:3:
+@:LDP man-pages:3.37:2010/09/20:j1f:3:j0:3:
+@:LDP man-pages:3.37:2010/09/20:j1l:3:j0:3:
+@:LDP man-pages:3.37:2010/09/20:jn:3:j0:3:
+@:LDP man-pages:3.37:2010/09/20:jnf:3:j0:3:
+@:LDP man-pages:3.37:2010/09/20:jnl:3:j0:3:
+@:LDP man-pages:3.37:2007/07/26:jrand48:3:drand48:3:
+@:LDP man-pages:3.37:2007/07/26:jrand48_r:3:drand48_r:3:
+@:LDP man-pages:3.37:2002/07/18:key_decryptsession:3:key_setsecret:3:
+@:LDP man-pages:3.37:2002/07/18:key_encryptsession:3:key_setsecret:3:
+@:LDP man-pages:3.37:2002/07/18:key_gendes:3:key_setsecret:3:
+@:LDP man-pages:3.37:2002/07/18:key_secretkey_is_set:3:key_setsecret:3:
+○:LDP man-pages:3.37:2002/07/18:key_setsecret:3:2003/02/01::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2011/09/07:klogctl:3:syslog:2:
+@:LDP man-pages:3.37:2010/09/20:l64a:3:a64l:3:
+@:LDP man-pages:3.37:2010/09/20:labs:3:abs:3:
+@:LDP man-pages:3.37:2010/02/25:lckpwdf:3:getspnam:3:
+@:LDP man-pages:3.37:2007/07/26:lcong48:3:drand48:3:
+@:LDP man-pages:3.37:2007/07/26:lcong48_r:3:drand48_r:3:
+○:LDP man-pages:3.37:2010/09/20:ldexp:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:ldexpf:3:ldexp:3:
+@:LDP man-pages:3.37:2010/09/20:ldexpl:3:ldexp:3:
+@:LDP man-pages:3.37:2010/09/20:ldiv:3:div:3:
+※:LDP man-pages:3.37:2010/09/10:le16toh:3:endian:3:
+※:LDP man-pages:3.37:2010/09/10:le32toh:3:endian:3:
+※:LDP man-pages:3.37:2010/09/10:le64toh:3:endian:3:
+@:LDP man-pages:3.37:1999/09/27:lfind:3:lsearch:3:
+○:LDP man-pages:3.37:2010/09/11:lgamma:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/11:lgamma_r:3:lgamma:3:
+@:LDP man-pages:3.37:2010/09/11:lgammaf:3:lgamma:3:
+@:LDP man-pages:3.37:2010/09/11:lgammaf_r:3:lgamma:3:
+@:LDP man-pages:3.37:2010/09/11:lgammal:3:lgamma:3:
+@:LDP man-pages:3.37:2010/09/11:lgammal_r:3:lgamma:3:
+×:LDP man-pages:3.37:2010/10/20:lio_listio:3:::::
+@:LDP man-pages:3.37:2010/09/20:llabs:3:abs:3:
+@:LDP man-pages:3.37:2010/09/20:lldiv:3:div:3:
+@:LDP man-pages:3.37:2010/09/20:llrint:3:lrint:3:
+@:LDP man-pages:3.37:2010/09/20:llrintf:3:lrint:3:
+@:LDP man-pages:3.37:2010/09/20:llrintl:3:lrint:3:
+@:LDP man-pages:3.37:2010/09/20:llround:3:lround:3:
+@:LDP man-pages:3.37:2010/09/20:llroundf:3:lround:3:
+@:LDP man-pages:3.37:2010/09/20:llroundl:3:lround:3:
+○:LDP man-pages:3.37:1993/04/25:localeconv:3:1998/05/25::tyoshino@eng.toyo.ac.jp:Takashi Yoshino:
+@:LDP man-pages:3.37:2010/02/25:localtime:3:ctime:3:
+@:LDP man-pages:3.37:2010/02/25:localtime_r:3:ctime:3:
+○:LDP man-pages:3.37:2011/09/11:lockf:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2010/09/20:log:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2010/09/20:log10:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:log10f:3:log10:3:
+@:LDP man-pages:3.37:2010/09/20:log10l:3:log10:3:
+○:LDP man-pages:3.37:2010/09/20:log1p:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:log1pf:3:log1p:3:
+@:LDP man-pages:3.37:2010/09/20:log1pl:3:log1p:3:
+○:LDP man-pages:3.37:2010/09/12:log2:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/12:log2f:3:log2:3:
+@:LDP man-pages:3.37:2010/09/12:log2l:3:log2:3:
+○:LDP man-pages:3.37:2010/09/20:logb:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:logbf:3:logb:3:
+@:LDP man-pages:3.37:2010/09/20:logbl:3:logb:3:
+@:LDP man-pages:3.37:2010/09/20:logf:3:log:3:
+○:LDP man-pages:3.37:2004/05/06:login:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.37:2010/06/13:login_tty:3:openpty:3:
+@:LDP man-pages:3.37:2010/09/20:logl:3:log:3:
+@:LDP man-pages:3.37:2004/05/06:logout:3:login:3:
+@:LDP man-pages:3.37:2008/07/02:logwtmp:3:updwtmp:3:
+○:LDP man-pages:3.37:2009/01/13:longjmp:3:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2007/07/26:lrand48:3:drand48:3:
+@:LDP man-pages:3.37:2007/07/26:lrand48_r:3:drand48_r:3:
+○:LDP man-pages:3.37:2010/09/20:lrint:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:lrintf:3:lrint:3:
+@:LDP man-pages:3.37:2010/09/20:lrintl:3:lrint:3:
+○:LDP man-pages:3.37:2010/09/20:lround:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:lroundf:3:lround:3:
+@:LDP man-pages:3.37:2010/09/20:lroundl:3:lround:3:
+○:LDP man-pages:3.37:1999/09/27:lsearch:3:2005/03/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2004/12/11:lseek64:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.37:2008/04/07:lutimes:3:futimes:3:
+※:LDP man-pages:3.37:2010/09/10:major:3:makedev:3:
+○:LDP man-pages:3.37:2009/03/31:makecontext:3:2008/12/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+×:LDP man-pages:3.37:2010/09/10:makedev:3:::::
+☆:LDP man-pages:3.25=>3.37:2011/09/08:malloc:3:2007/10/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.25=>3.37:2010/10/13:malloc_hook:3:2003/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+×:LDP man-pages:3.37:2010/09/10:matherr:3:::::
+○:LDP man-pages:3.37:1999/07/25:mblen:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+○:LDP man-pages:3.37:1999/07/25:mbrlen:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+○:LDP man-pages:3.37:2011/09/28:mbrtowc:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.37:2000/11/20:mbsinit:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+○:LDP man-pages:3.37:2011/10/01:mbsnrtowcs:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+○:LDP man-pages:3.37:2011/09/28:mbsrtowcs:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+○:LDP man-pages:3.37:2011/09/28:mbstowcs:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+○:LDP man-pages:3.37:2011/09/28:mbtowc:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+@:LDP man-pages:3.37:2010/09/20:memalign:3:posix_memalign:3:
+○:LDP man-pages:3.37:2009/01/13:memccpy:3:1997/07/26::tyoshino@eng.toyo.ac.jp:Takashi Yoshino:
+○:LDP man-pages:3.37:2009/12/04:memchr:3:2004/01/17::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.37:2011/09/14:memcmp:3:1997/12/17::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
+○:LDP man-pages:3.37:2010/11/15:memcpy:3:1997/02/21::tyoshino@eng.toyo.ac.jp:Takashi Yoshino:
+○:LDP man-pages:3.37:2010/09/10:memfrob:3:1998/05/34::ishikawa@linux.or.jp:ISHIKAWA Mutsumi:
+○:LDP man-pages:3.37:2008/12/05:memmem:3:1997/12/17::tyoshino@eng.toyo.ac.jp:Takashi Yoshino:
+○:LDP man-pages:3.37:1993/04/10:memmove:3:2007/06/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2008/08/12:mempcpy:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.37:2009/12/04:memrchr:3:memchr:3:
+○:LDP man-pages:3.37:1993/04/11:memset:3:1997/02/21::tyoshino@eng.toyo.ac.jp:Takashi Yoshino:
+※:LDP man-pages:3.37:2010/09/10:minor:3:makedev:3:
+○:LDP man-pages:3.37:2010/09/26:mkdtemp:3:2001/11/09::ysato@h4.dion.ne.jp:Yuichi SATO:
+○:LDP man-pages:3.37:2008/06/12:mkfifo:3:2008/10/08::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.37:2009/12/13:mkfifoat:3:2006/08/19::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.37:2010/09/26:mkostemp:3:mkstemp:3:
+@:LDP man-pages:3.37:2010/09/26:mkostemps:3:mkstemp:3:
+☆:LDP man-pages:3.24=>3.37:2010/09/26:mkstemp:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/26:mkstemps:3:mkstemp:3:
+○:LDP man-pages:3.37:2010/09/20:mktemp:3:1999/04/10::tanisako@osa.dec.com:Kazuyuki Tanisako:
+@:LDP man-pages:3.37:2010/02/25:mktime:3:ctime:3:
+@:LDP man-pages:3.37:2008/04/22:mmap64:3:mmap2:2:
+○:LDP man-pages:3.37:2010/09/20:modf:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:modff:3:modf:3:
+@:LDP man-pages:3.37:2010/09/20:modfl:3:modf:3:
+○:LDP man-pages:3.37:1993/06/04:mpool:3:1999/08/19::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.37:2010/08/29:mq_close:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2010/08/29:mq_getattr:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2010/10/04:mq_notify:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2009/02/20:mq_open:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2010/09/20:mq_receive:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2010/09/20:mq_send:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/08/29:mq_setattr:3:mq_getattr:3:
+@:LDP man-pages:3.37:2010/09/20:mq_timedreceive:3:mq_receive:3:
+@:LDP man-pages:3.37:2010/09/20:mq_timedsend:3:mq_send:3:
+○:LDP man-pages:3.37:2010/08/29:mq_unlink:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2007/07/26:mrand48:3:drand48:3:
+@:LDP man-pages:3.37:2007/07/26:mrand48_r:3:drand48_r:3:
+○:LDP man-pages:3.37:2002/07/20:mtrace:3:2003/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2002/07/20:muntrace:3:mtrace:3:
+○:LDP man-pages:3.37:2010/09/20:nan:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:nanf:3:nan:3:
+@:LDP man-pages:3.37:2010/09/20:nanl:3:nan:3:
+@:LDP man-pages:3.37:2010/09/20:nearbyint:3:rint:3:
+@:LDP man-pages:3.37:2010/09/20:nearbyintf:3:rint:3:
+@:LDP man-pages:3.37:2010/09/20:nearbyintl:3:rint:3:
+○:LDP man-pages:3.37:1999/05/14:netlink:3:1999/08/20::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.37:2010/09/20:nextafter:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:nextafterf:3:nextafter:3:
+@:LDP man-pages:3.37:2010/09/20:nextafterl:3:nextafter:3:
+@:LDP man-pages:3.37:2010/09/20:nexttoward:3:nextafter:3:
+@:LDP man-pages:3.37:2010/09/20:nexttowardf:3:nextafter:3:
+@:LDP man-pages:3.37:2010/09/20:nexttowardl:3:nextafter:3:
+@:LDP man-pages:3.37:2010/09/20:nftw:3:ftw:3:
+○:LDP man-pages:3.37:2010/10/03:nl_langinfo:3:2001/07/15::KY4N-UCD@asahi-net.or.jp:UCHIDA Norihiro:
+@:LDP man-pages:3.37:2007/07/26:nrand48:3:drand48:3:
+@:LDP man-pages:3.37:2007/07/26:nrand48_r:3:drand48_r:3:
+@:LDP man-pages:3.37:2009/01/15:ntohl:3:byteorder:3:
+@:LDP man-pages:3.37:2009/01/15:ntohs:3:byteorder:3:
+○:LDP man-pages:3.37:2008/07/12:offsetof:3:2006/07/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2008/12/05:on_exit:3:2009/01/15:o:amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/15:open_memstream:3:fmemopen:3:
+@:LDP man-pages:3.37:2010/09/15:open_wmemstream:3:fmemopen:3:
+○:LDP man-pages:3.37:2010/06/20:opendir:3:2007/10/14:o:amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2008/11/12:openlog:3:syslog:3:
+○:LDP man-pages:3.37:2010/06/13:openpty:3:2006/02/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/11/01:optarg:3:getopt:3:
+@:LDP man-pages:3.37:2010/11/01:opterr:3:getopt:3:
+@:LDP man-pages:3.37:2010/11/01:optind:3:getopt:3:
+@:LDP man-pages:3.37:2010/11/01:optopt:3:getopt:3:
+@:LDP man-pages:3.37:2003/04/04:passwd2des:3:xcrypt:3:
+@:LDP man-pages:3.37:1993/04/04:pathconf:3:fpathconf:3:
+@:LDP man-pages:3.37:2010/02/03:pclose:3:popen:3:
+○:LDP man-pages:3.37:2007/07/26:perror:3:2005/03/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2008/07/17:pmap_getmaps:3:rpc:3:
+@:LDP man-pages:3.37:2008/07/17:pmap_getport:3:rpc:3:
+@:LDP man-pages:3.37:2008/07/17:pmap_rmtcall:3:rpc:3:
+@:LDP man-pages:3.37:2008/07/17:pmap_set:3:rpc:3:
+@:LDP man-pages:3.37:2008/07/17:pmap_unset:3:rpc:3:
+○:LDP man-pages:3.37:2010/02/03:popen:3:2008/11/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2010/09/20:posix_fallocate:3:2006/08/19::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.37:2010/09/20:posix_memalign:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2010/10/04:posix_openpt:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.37:2010/09/12:pow:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2008/08/11:pow10:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.37:2008/08/11:pow10f:3:pow10:3:
+@:LDP man-pages:3.37:2008/08/11:pow10l:3:pow10:3:
+@:LDP man-pages:3.37:2010/09/12:powf:3:pow:3:
+@:LDP man-pages:3.37:2010/09/12:powl:3:pow:3:
+○:LDP man-pages:3.37:2011/09/28:printf:3:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2007/07/26:profil:3:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.37:2006/04/29:program_invocation_name:3:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2006/04/29:program_invocation_short_name:3:program_invocation_name:3:
+@:LDP man-pages:3.37:2010/10/06:psiginfo:3:psignal:3:
+☆:LDP man-pages:3.25=>3.37:2010/10/06:psignal:3:1997/12/26::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
+※:LDP man-pages:3.37:2008/11/11:pthread_attr_destroy:3:pthread_attr_init:3:
+※:LDP man-pages:3.37:2010/09/10:pthread_attr_getaffinity_np:3:pthread_attr_setaffinity_np:3:
+※:LDP man-pages:3.37:2010/02/03:pthread_attr_getdetachstate:3:pthread_attr_setdetachstate:3:
+※:LDP man-pages:3.37:2008/10/24:pthread_attr_getguardsize:3:pthread_attr_setguardsize:3:
+※:LDP man-pages:3.37:2008/11/10:pthread_attr_getinheritsched:3:pthread_attr_setinheritsched:3:
+※:LDP man-pages:3.37:2010/02/03:pthread_attr_getschedparam:3:pthread_attr_setschedparam:3:
+※:LDP man-pages:3.37:2010/02/03:pthread_attr_getschedpolicy:3:pthread_attr_setschedpolicy:3:
+※:LDP man-pages:3.37:2008/10/24:pthread_attr_getscope:3:pthread_attr_setscope:3:
+※:LDP man-pages:3.37:2008/10/24:pthread_attr_getstack:3:pthread_attr_setstack:3:
+※:LDP man-pages:3.37:2008/10/24:pthread_attr_getstackaddr:3:pthread_attr_setstackaddr:3:
+※:LDP man-pages:3.37:2008/11/05:pthread_attr_getstacksize:3:pthread_attr_setstacksize:3:
+×:LDP man-pages:3.37:2008/11/11:pthread_attr_init:3:::::
+×:LDP man-pages:3.37:2010/09/10:pthread_attr_setaffinity_np:3:::::
+×:LDP man-pages:3.37:2010/02/03:pthread_attr_setdetachstate:3:::::
+×:LDP man-pages:3.37:2008/10/24:pthread_attr_setguardsize:3:::::
+×:LDP man-pages:3.37:2008/11/10:pthread_attr_setinheritsched:3:::::
+×:LDP man-pages:3.37:2010/02/03:pthread_attr_setschedparam:3:::::
+×:LDP man-pages:3.37:2010/02/03:pthread_attr_setschedpolicy:3:::::
+×:LDP man-pages:3.37:2008/10/24:pthread_attr_setscope:3:::::
+×:LDP man-pages:3.37:2008/10/24:pthread_attr_setstack:3:::::
+×:LDP man-pages:3.37:2008/10/24:pthread_attr_setstackaddr:3:::::
+×:LDP man-pages:3.37:2008/11/05:pthread_attr_setstacksize:3:::::
+×:LDP man-pages:3.37:2008/11/17:pthread_cancel:3:::::
+※:LDP man-pages:3.37:2008/11/24:pthread_cleanup_pop:3:pthread_cleanup_push:3:
+※:LDP man-pages:3.37:2008/12/04:pthread_cleanup_pop_restore_np:3:pthread_cleanup_push_defer_np:3:
+×:LDP man-pages:3.37:2008/11/24:pthread_cleanup_push:3:::::
+×:LDP man-pages:3.37:2008/12/04:pthread_cleanup_push_defer_np:3:::::
+×:LDP man-pages:3.37:2008/11/11:pthread_create:3:::::
+×:LDP man-pages:3.37:2008/11/27:pthread_detach:3:::::
+×:LDP man-pages:3.37:2009/03/30:pthread_equal:3:::::
+×:LDP man-pages:3.37:2009/03/30:pthread_exit:3:::::
+※:LDP man-pages:3.37:2010/09/10:pthread_getaffinity_np:3:pthread_setaffinity_np:3:
+×:LDP man-pages:3.37:2010/09/10:pthread_getattr_np:3:::::
+※:LDP man-pages:3.37:2009/04/10:pthread_getconcurrency:3:pthread_setconcurrency:3:
+×:LDP man-pages:3.37:2009/02/08:pthread_getcpuclockid:3:::::
+※:LDP man-pages:3.37:2008/11/17:pthread_getschedparam:3:pthread_setschedparam:3:
+×:LDP man-pages:3.37:2008/11/27:pthread_join:3:::::
+×:LDP man-pages:3.37:2009/01/28:pthread_kill:3:::::
+×:LDP man-pages:3.37:2010/09/09:pthread_kill_other_threads_np:3:::::
+×:LDP man-pages:3.37:2008/10/24:pthread_self:3:::::
+×:LDP man-pages:3.37:2010/09/10:pthread_setaffinity_np:3:::::
+×:LDP man-pages:3.37:2008/11/24:pthread_setcancelstate:3:::::
+※:LDP man-pages:3.37:2008/11/24:pthread_setcanceltype:3:pthread_setcancelstate:3:
+×:LDP man-pages:3.37:2009/04/10:pthread_setconcurrency:3:::::
+×:LDP man-pages:3.37:2008/11/17:pthread_setschedparam:3:::::
+×:LDP man-pages:3.37:2008/11/06:pthread_setschedprio:3:::::
+×:LDP man-pages:3.37:2011/10/16:pthread_sigmask:3:::::
+×:LDP man-pages:3.37:2011/09/23:pthread_sigqueue:3:::::
+×:LDP man-pages:3.37:2008/11/17:pthread_testcancel:3:::::
+※:LDP man-pages:3.37:2010/09/10:pthread_timedjoin_np:3:pthread_tryjoin_np:3:
+×:LDP man-pages:3.37:2010/09/10:pthread_tryjoin_np:3:::::
+×:LDP man-pages:3.37:2009/04/10:pthread_yield:3:::::
+○:LDP man-pages:3.37:2008/09/03:ptsname:3:2005/03/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2008/09/03:ptsname_r:3:ptsname:3:
+@:LDP man-pages:3.37:2011/09/28:putc:3:puts:3:
+@:LDP man-pages:3.37:2008/08/29:putc_unlocked:3:unlocked_stdio:3:
+@:LDP man-pages:3.37:2011/09/28:putchar:3:puts:3:
+@:LDP man-pages:3.37:2008/08/29:putchar_unlocked:3:unlocked_stdio:3:
+○:LDP man-pages:3.37:2007/07/26:putenv:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.37:2003/09/09:putgrent:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.37:2007/07/26:putpwent:3:1997/12/18::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
+○:LDP man-pages:3.37:2011/09/28:puts:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.37:2010/02/25:putspent:3:getspnam:3:
+@:LDP man-pages:3.37:2008/06/29:pututline:3:getutent:3:
+@:LDP man-pages:3.37:2008/06/29:pututxline:3:getutent:3:
+@:LDP man-pages:3.37:2010/09/26:putw:3:getw:3:
+@:LDP man-pages:3.37:1999/07/25:putwc:3:fputwc:3:
+@:LDP man-pages:3.37:2008/08/29:putwc_unlocked:3:unlocked_stdio:3:
+○:LDP man-pages:3.37:1999/07/25:putwchar:3:2001/11/09::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.37:2008/08/29:putwchar_unlocked:3:unlocked_stdio:3:
+○:LDP man-pages:3.37:2010/09/20:qecvt:3:2002/09/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2007/07/26:qecvt_r:3:ecvt_r:3:
+@:LDP man-pages:3.37:2010/09/20:qfcvt:3:qecvt:3:
+@:LDP man-pages:3.37:2007/07/26:qfcvt_r:3:ecvt_r:3:
+@:LDP man-pages:3.37:2010/09/20:qgcvt:3:qecvt:3:
+○:LDP man-pages:3.37:2009/09/15:qsort:3:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2007/12/28:queue:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.37:2008/10/17:raise:3:1997/12/25::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
+☆:LDP man-pages:3.25=>3.37:2010/10/01:rand:3:2005/03/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/10/01:rand_r:3:rand:3:
+○:LDP man-pages:3.37:2010/09/20:random:3:1997/01/21::tyoshino@eng.toyo.ac.jp:YOSHINO Takashi:
+○:LDP man-pages:3.37:2008/03/07:random_r:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2009/12/04:rawmemchr:3:memchr:3:
+○:LDP man-pages:3.37:2007/12/28:rcmd:3:1999/03/01::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.37:1995/07/14:re_comp:3:1997/12/18::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
+@:LDP man-pages:3.37:1995/07/14:re_exec:3:re_comp:3:
+☆:LDP man-pages:3.35=>3.37:2010/09/10:readdir:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/10:readdir_r:3:readdir:3:
+@:LDP man-pages:3.37:2011/09/08:realloc:3:malloc:3:
+○:LDP man-pages:3.37:2011/09/10:realpath:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:1994/08/18:recno:3:1999/08/19::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+@:LDP man-pages:3.37:2011/09/27:regcomp:3:regex:3:
+@:LDP man-pages:3.37:2011/09/27:regerror:3:regex:3:
+○:LDP man-pages:3.37:2011/09/27:regex:3:2005/03/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2011/09/27:regexec:3:regex:3:
+@:LDP man-pages:3.37:2011/09/27:regfree:3:regex:3:
+@:LDP man-pages:3.37:2008/07/17:registerrpc:3:rpc:3:
+○:LDP man-pages:3.37:2010/09/20:remainder:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:remainderf:3:remainder:3:
+@:LDP man-pages:3.37:2010/09/20:remainderl:3:remainder:3:
+○:LDP man-pages:3.37:2008/12/03:remove:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.37:2010/09/09:remque:3:insque:3:
+○:LDP man-pages:3.37:2010/09/20:remquo:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:remquof:3:remquo:3:
+@:LDP man-pages:3.37:2010/09/20:remquol:3:remquo:3:
+@:LDP man-pages:3.37:2010/06/17:res_init:3:resolver:3:
+@:LDP man-pages:3.37:2010/06/17:res_mkquery:3:resolver:3:
+@:LDP man-pages:3.37:2010/06/17:res_query:3:resolver:3:
+@:LDP man-pages:3.37:2010/06/17:res_querydomain:3:resolver:3:
+@:LDP man-pages:3.37:2010/06/17:res_search:3:resolver:3:
+@:LDP man-pages:3.37:2010/06/17:res_send:3:resolver:3:
+○:LDP man-pages:3.37:2010/06/17:resolver:3:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.37:1993/11/29:rewind:3:fseek:3:
+○:LDP man-pages:3.37:1995/06/11:rewinddir:3:1997/12/24::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
+○:LDP man-pages:3.37:2010/09/10:rexec:3:2005/12/28::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2011/09/21:rindex:3:index:3:
+○:LDP man-pages:3.37:2010/09/20:rint:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:rintf:3:rint:3:
+@:LDP man-pages:3.37:2010/09/20:rintl:3:rint:3:
+○:LDP man-pages:3.37:2010/09/20:round:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:roundf:3:round:3:
+@:LDP man-pages:3.37:2010/09/20:roundl:3:round:3:
+○:LDP man-pages:3.37:2008/07/17:rpc:3:2001/11/09::ysato@h4.dion.ne.jp:Yuichi SATO:
+○:LDP man-pages:3.37:2007/07/26:rpmatch:3:2006/07/31::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2007/12/28:rresvport:3:rcmd:3:
+○:LDP man-pages:3.37:2010/02/25:rtime:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.37:2010/01/11:rtnetlink:3:1999/08/20::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+@:LDP man-pages:3.37:2007/12/28:ruserok:3:rcmd:3:
+○:LDP man-pages:3.37:2010/09/20:scalb:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:scalbf:3:scalb:3:
+@:LDP man-pages:3.37:2010/09/20:scalbl:3:scalb:3:
+×:LDP man-pages:3.37:2010/09/20:scalbln:3:::::
+※:LDP man-pages:3.37:2010/09/20:scalblnf:3:scalbln:3:
+※:LDP man-pages:3.37:2010/09/20:scalblnl:3:scalbln:3:
+※:LDP man-pages:3.37:2010/09/20:scalbn:3:scalbln:3:
+※:LDP man-pages:3.37:2010/09/20:scalbnf:3:scalbln:3:
+※:LDP man-pages:3.37:2010/09/20:scalbnl:3:scalbln:3:
+○:LDP man-pages:3.37:2011/09/08:scandir:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.35=>3.37:2011/09/28:scanf:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2010/10/31:sched_getcpu:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2007/07/26:seed48:3:drand48:3:
+@:LDP man-pages:3.37:2007/07/26:seed48_r:3:drand48_r:3:
+○:LDP man-pages:3.37:2009/03/11:seekdir:3:1997/12/24::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
+○:LDP man-pages:3.37:2006/03/25:sem_close:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2006/03/25:sem_destroy:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2006/03/25:sem_getvalue:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2008/07/27:sem_init:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2009/02/20:sem_open:3:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2009/03/30:sem_post:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2012/02/12:sem_timedwait:3:sem_wait:3:
+@:LDP man-pages:3.37:2012/02/12:sem_trywait:3:sem_wait:3:
+○:LDP man-pages:3.37:2006/03/25:sem_unlink:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.35=>3.37:2012/02/12:sem_wait:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2003/09/09:setaliasent:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.37:2008/06/26:setbuf:3:2001/07/14::ysato@h4.dion.ne.jp:Yuichi SATO:
+@:LDP man-pages:3.37:2008/06/26:setbuffer:3:setbuf:3:
+○:LDP man-pages:3.37:2009/09/20:setenv:3:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.37:2002/02/28:setfsent:3:getfsent:3:
+@:LDP man-pages:3.37:2010/10/21:setgrent:3:getgrent:3:
+@:LDP man-pages:3.37:2010/10/04:sethostent:3:gethostbyname:3:
+@:LDP man-pages:3.37:2010/09/20:sethostid:3:gethostid:3:
+○:LDP man-pages:3.37:2009/06/26:setjmp:3:2009/03/05::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.37:2003/04/04:setkey:3:encrypt:3:
+@:LDP man-pages:3.37:2003/04/04:setkey_r:3:encrypt:3:
+@:LDP man-pages:3.37:2008/06/26:setlinebuf:3:setbuf:3:
+○:LDP man-pages:3.37:2008/12/05:setlocale:3:2002/10/12::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.37:2001/10/05:setlogmask:3:2001/11/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2009/09/15:setmntent:3:getmntent:3:
+@:LDP man-pages:3.37:2008/08/19:setnetent:3:getnetent:3:
+○:LDP man-pages:3.37:2007/07/26:setnetgrent:3:2005/03/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2008/08/19:setprotoent:3:getprotoent:3:
+@:LDP man-pages:3.37:2010/10/21:setpwent:3:getpwent:3:
+@:LDP man-pages:3.37:2008/08/19:setrpcent:3:getrpcent:3:
+@:LDP man-pages:3.37:2008/08/19:setservent:3:getservent:3:
+@:LDP man-pages:3.37:2010/02/25:setspent:3:getspnam:3:
+@:LDP man-pages:3.37:2010/09/20:setstate:3:random:3:
+@:LDP man-pages:3.37:2008/03/07:setstate_r:3:random_r:3:
+@:LDP man-pages:3.37:2002/07/18:setttyent:3:getttyent:3:
+@:LDP man-pages:3.37:2007/07/26:setusershell:3:getusershell:3:
+@:LDP man-pages:3.37:2008/06/29:setutent:3:getutent:3:
+@:LDP man-pages:3.37:2008/06/29:setutxent:3:getutent:3:
+@:LDP man-pages:3.37:2008/06/26:setvbuf:3:setbuf:3:
+@:LDP man-pages:3.37:2010/02/25:sgetspent:3:getspnam:3:
+@:LDP man-pages:3.37:2010/02/25:sgetspent_r:3:getspnam:3:
+○:LDP man-pages:3.37:2009/02/25:shm_open:3:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2009/02/25:shm_unlink:3:shm_open:3:
+@:LDP man-pages:3.37:2008/09/01:sigaddset:3:sigsetops:3:
+@:LDP man-pages:3.37:2008/09/01:sigandset:3:sigsetops:3:
+@:LDP man-pages:3.37:2007/07/26:sigblock:3:sigvec:3:
+@:LDP man-pages:3.37:2008/09/01:sigdelset:3:sigsetops:3:
+@:LDP man-pages:3.37:2008/09/01:sigemptyset:3:sigsetops:3:
+@:LDP man-pages:3.37:2008/09/01:sigfillset:3:sigsetops:3:
+@:LDP man-pages:3.37:2007/07/26:siggetmask:3:sigvec:3:
+@:LDP man-pages:3.37:2010/09/20:sighold:3:sigset:3:
+@:LDP man-pages:3.37:2010/09/20:sigignore:3:sigset:3:
+○:LDP man-pages:3.37:2011/09/09:siginterrupt:3:1998/05/24::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+@:LDP man-pages:3.37:2008/09/01:sigisemptyset:3:sigsetops:3:
+@:LDP man-pages:3.37:2008/09/01:sigismember:3:sigsetops:3:
+@:LDP man-pages:3.37:2009/01/13:siglongjmp:3:longjmp:3:
+@:LDP man-pages:3.37:2007/07/26:sigmask:3:sigvec:3:
+○:LDP man-pages:3.37:2010/09/20:signbit:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/11:signgam:3:lgamma:3:
+○:LDP man-pages:3.37:2009/02/04:significand:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.37:2009/02/04:significandf:3:significand:3:
+@:LDP man-pages:3.37:2009/02/04:significandl:3:significand:3:
+@:LDP man-pages:3.37:2008/09/01:sigorset:3:sigsetops:3:
+○:LDP man-pages:3.37:2010/09/12:sigpause:3:2005/12/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2007/07/26:sigqueue:3:2007/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:sigrelse:3:sigset:3:
+○:LDP man-pages:3.37:2010/09/20:sigset:3:2005/12/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2009/06/26:sigsetjmp:3:setjmp:3:
+@:LDP man-pages:3.37:2007/07/26:sigsetmask:3:sigvec:3:
+○:LDP man-pages:3.37:2008/09/01:sigsetops:3:2005/12/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/26:sigstack:3:sigaltstack:2:
+○:LDP man-pages:3.37:2007/07/26:sigvec:3:2005/12/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2010/09/10:sigwait:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2010/09/11:sin:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2008/08/11:sincos:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2008/08/11:sincosf:3:sincos:3:
+@:LDP man-pages:3.37:2008/08/11:sincosl:3:sincos:3:
+@:LDP man-pages:3.37:2010/09/11:sinf:3:sin:3:
+○:LDP man-pages:3.37:2010/09/20:sinh:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:sinhf:3:sinh:3:
+@:LDP man-pages:3.37:2010/09/20:sinhl:3:sinh:3:
+@:LDP man-pages:3.37:2010/09/11:sinl:3:sin:3:
+○:LDP man-pages:3.37:2010/02/03:sleep:3:1997/01/21::tyoshino@eng.toyo.ac.jp:YOSHINO Takashi:
+@:LDP man-pages:3.37:2011/09/28:snprintf:3:printf:3:
+○:LDP man-pages:3.37:2008/12/03:sockatmark:3:2006/08/19::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.37:2011/09/28:sprintf:3:printf:3:
+○:LDP man-pages:3.37:2010/09/20:sqrt:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:sqrtf:3:sqrt:3:
+@:LDP man-pages:3.37:2010/09/20:sqrtl:3:sqrt:3:
+@:LDP man-pages:3.37:2010/10/01:srand:3:rand:3:
+@:LDP man-pages:3.37:2007/07/26:srand48:3:drand48:3:
+@:LDP man-pages:3.37:2007/07/26:srand48_r:3:drand48_r:3:
+@:LDP man-pages:3.37:2010/09/20:srandom:3:random:3:
+@:LDP man-pages:3.37:2008/03/07:srandom_r:3:random_r:3:
+@:LDP man-pages:3.37:2011/09/28:sscanf:3:scanf:3:
+@:LDP man-pages:3.37:2007/07/26:ssignal:3:gsignal:3:
+○:LDP man-pages:3.37:2003/08/22:statvfs:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.37:2001/10/14:stdarg:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.37:2008/07/14:stderr:3:stdin:3:
+○:LDP man-pages:3.37:2008/07/14:stdin:3:2005/09/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2001/12/26:stdio:3:2004/02/06::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.37:2001/12/16:stdio_ext:3:2002/08/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2008/07/14:stdout:3:stdin:3:
+○:LDP man-pages:3.37:2011/09/28:stpcpy:3:1997/12/26::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
+○:LDP man-pages:3.37:2011/09/28:stpncpy:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+○:LDP man-pages:3.37:2010/09/20:strcasecmp:3:1997/12/25::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
+@:LDP man-pages:3.37:2011/09/28:strcasestr:3:strstr:3:
+○:LDP man-pages:3.37:2011/09/28:strcat:3:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.37:2010/09/20:strchr:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:strchrnul:3:strchr:3:
+○:LDP man-pages:3.37:2010/09/20:strcmp:3:2001/10/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2010/09/20:strcoll:3:2007/06/01::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2010/09/20:strcpy:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.37:2010/09/20:strcspn:3:strspn:3:
+○:LDP man-pages:3.37:2011/10/01:strdup:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.37:2011/10/01:strdupa:3:strdup:3:
+○:LDP man-pages:3.37:2009/03/30:strerror:3:2005/12/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2009/03/30:strerror_r:3:strerror:3:
+○:LDP man-pages:3.37:2000/12/05:strfmon:3:2001/02/14::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.37:2010/09/20:strfry:3:1998/05/25::motoki@hal.t.u-tokyo.ac.jp:Akihiro Motoki:
+○:LDP man-pages:3.37:2010/01/17:strftime:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2010/02/25:string:3:1997/01/20::yoshino@civil.jcn.nihon-u.ac.jp:YOSHINO Takashi:
+○:LDP man-pages:3.37:2011/09/28:strlen:3:1997/01/20::tyoshino@eng.toyo.ac.jp:YOSHINO Takashi:
+@:LDP man-pages:3.37:2010/09/20:strncasecmp:3:strcasecmp:3:
+@:LDP man-pages:3.37:2011/09/28:strncat:3:strcat:3:
+@:LDP man-pages:3.37:2010/09/20:strncmp:3:strcmp:3:
+@:LDP man-pages:3.37:2010/09/20:strncpy:3:strcpy:3:
+@:LDP man-pages:3.37:2011/10/01:strndup:3:strdup:3:
+@:LDP man-pages:3.37:2011/10/01:strndupa:3:strdup:3:
+○:LDP man-pages:3.37:2011/09/28:strnlen:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+○:LDP man-pages:3.37:2010/09/20:strpbrk:3:1999/12/25::argrath@yo.rim.or.jp:Kentaro Shirakata:
+○:LDP man-pages:3.37:2009/12/05:strptime:3:2002/01/14::ysato@h4.dion.ne.jp:Yuichi SATO:
+@:LDP man-pages:3.37:2010/09/20:strrchr:3:strchr:3:
+○:LDP man-pages:3.37:2011/09/28:strsep:3:2009/03/05::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.37:2010/09/15:strsignal:3:1999/12/25::argrath@yo.rim.or.jp:Kentaro Shirakata:
+○:LDP man-pages:3.37:2010/09/20:strspn:3:1997/12/16::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
+○:LDP man-pages:3.37:2011/09/28:strstr:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.37:2010/09/20:strtod:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:strtof:3:strtod:3:
+○:LDP man-pages:3.37:2003/11/28:strtoimax:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.37:2010/09/27:strtok:3:2005/11/19:o:amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/27:strtok_r:3:strtok:3:
+○:LDP man-pages:3.37:2010/09/20:strtol:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:strtold:3:strtod:3:
+@:LDP man-pages:3.37:2010/09/20:strtoll:3:strtol:3:
+@:LDP man-pages:3.37:2010/09/20:strtoq:3:strtol:3:
+○:LDP man-pages:3.37:2011/09/15:strtoul:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2011/09/15:strtoull:3:strtoul:3:
+@:LDP man-pages:3.37:2003/11/28:strtoumax:3:strtoimax:3:
+@:LDP man-pages:3.37:2011/09/15:strtouq:3:strtoul:3:
+○:LDP man-pages:3.37:2001/12/19:strverscmp:3:2002/09/22::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2011/09/28:strxfrm:3:1999/03/24::ss236rx@ymg.urban.ne.jp:Shouichi Saito:
+@:LDP man-pages:3.37:2008/07/17:svc_destroy:3:rpc:3:
+@:LDP man-pages:3.37:2008/07/17:svc_freeargs:3:rpc:3:
+@:LDP man-pages:3.37:2008/07/17:svc_getargs:3:rpc:3:
+@:LDP man-pages:3.37:2008/07/17:svc_getcaller:3:rpc:3:
+@:LDP man-pages:3.37:2008/07/17:svc_getreq:3:rpc:3:
+@:LDP man-pages:3.37:2008/07/17:svc_getreqset:3:rpc:3:
+@:LDP man-pages:3.37:2008/07/17:svc_register:3:rpc:3:
+@:LDP man-pages:3.37:2008/07/17:svc_run:3:rpc:3:
+@:LDP man-pages:3.37:2008/07/17:svc_sendreply:3:rpc:3:
+@:LDP man-pages:3.37:2008/07/17:svc_unregister:3:rpc:3:
+@:LDP man-pages:3.37:2008/07/17:svcerr_auth:3:rpc:3:
+@:LDP man-pages:3.37:2008/07/17:svcerr_decode:3:rpc:3:
+@:LDP man-pages:3.37:2008/07/17:svcerr_noproc:3:rpc:3:
+@:LDP man-pages:3.37:2008/07/17:svcerr_noprog:3:rpc:3:
+@:LDP man-pages:3.37:2008/07/17:svcerr_progvers:3:rpc:3:
+@:LDP man-pages:3.37:2008/07/17:svcerr_systemerr:3:rpc:3:
+@:LDP man-pages:3.37:2008/07/17:svcerr_weakauth:3:rpc:3:
+@:LDP man-pages:3.37:2008/07/17:svcfd_create:3:rpc:3:
+@:LDP man-pages:3.37:2008/07/17:svcraw_create:3:rpc:3:
+@:LDP man-pages:3.37:2008/07/17:svctcp_create:3:rpc:3:
+@:LDP man-pages:3.37:2008/07/17:svcudp_bufcreate:3:rpc:3:
+@:LDP man-pages:3.37:2008/07/17:svcudp_create:3:rpc:3:
+○:LDP man-pages:3.37:2001/12/15:swab:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.37:2009/03/31:swapcontext:3:makecontext:3:
+@:LDP man-pages:3.37:2011/09/17:swprintf:3:wprintf:3:
+@:LDP man-pages:3.37:2007/07/26:sys_errlist:3:perror:3:
+@:LDP man-pages:3.37:2007/07/26:sys_nerr:3:perror:3:
+○:LDP man-pages:3.37:2007/12/12:sysconf:3:2005/03/31::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2008/11/12:syslog:3:2008/07/24:o:argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.37:2010/09/10:system:3:2005/03/12:o:amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2007/05/04:sysv_signal:3:2007/06/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2010/09/11:tan:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/11:tanf:3:tan:3:
+○:LDP man-pages:3.37:2010/09/20:tanh:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:tanhf:3:tanh:3:
+@:LDP man-pages:3.37:2010/09/20:tanhl:3:tanh:3:
+@:LDP man-pages:3.37:2010/09/11:tanl:3:tan:3:
+@:LDP man-pages:3.37:2011/09/08:tcdrain:3:termios:3:
+@:LDP man-pages:3.37:2011/09/08:tcflow:3:termios:3:
+@:LDP man-pages:3.37:2011/09/08:tcflush:3:termios:3:
+@:LDP man-pages:3.37:2011/09/08:tcgetattr:3:termios:3:
+○:LDP man-pages:3.37:2003/01/28:tcgetpgrp:3:2003/08/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2010/09/10:tcgetsid:3:2003/08/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2011/09/08:tcsendbreak:3:termios:3:
+@:LDP man-pages:3.37:2011/09/08:tcsetattr:3:termios:3:
+@:LDP man-pages:3.37:2003/01/28:tcsetpgrp:3:tcgetpgrp:3:
+@:LDP man-pages:3.37:2008/09/23:tdelete:3:tsearch:3:
+@:LDP man-pages:3.37:2008/09/23:tdestroy:3:tsearch:3:
+○:LDP man-pages:3.37:2009/03/11:telldir:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2007/07/26:tempnam:3:2006/07/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.32=>3.37:2011/09/08:termios:3:2007/05/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2008/09/23:tfind:3:tsearch:3:
+○:LDP man-pages:3.37:2010/09/20:tgamma:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:tgammaf:3:tgamma:3:
+@:LDP man-pages:3.37:2010/09/20:tgammal:3:tgamma:3:
+○:LDP man-pages:3.37:2007/07/26:timegm:3:2002/01/14::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+@:LDP man-pages:3.37:2007/07/26:timelocal:3:timegm:3:
+○:LDP man-pages:3.37:2010/02/25:timeradd:3:2007/10/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/02/25:timerclear:3:timeradd:3:
+@:LDP man-pages:3.37:2010/02/25:timercmp:3:timeradd:3:
+@:LDP man-pages:3.37:2010/02/25:timerisset:3:timeradd:3:
+@:LDP man-pages:3.37:2010/02/25:timersub:3:timeradd:3:
+@:LDP man-pages:3.37:2010/02/25:timezone:3:tzset:3:
+○:LDP man-pages:3.37:2008/07/14:tmpfile:3:2001/12/14:o:ysato@h4.dion.ne.jp:Yuichi SATO:
+○:LDP man-pages:3.37:2010/09/10:tmpnam:3:2006/07/26:o:amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/10:tmpnam_r:3:tmpnam:3:
+○:LDP man-pages:3.37:2009/03/15:toascii:3:1997/12/16::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
+@:LDP man-pages:3.37:1993/04/04:tolower:3:toupper:3:
+○:LDP man-pages:3.37:1993/04/04:toupper:3:1997/04/29::rui@linux.or.jp:Ueyama Rui:
+○:LDP man-pages:3.37:1999/07/25:towctrans:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.37:1999/07/25:towlower:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.37:1999/07/25:towupper:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.37:2010/09/20:trunc:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/09/20:truncf:3:trunc:3:
+@:LDP man-pages:3.37:2010/09/20:truncl:3:trunc:3:
+○:LDP man-pages:3.37:2008/09/23:tsearch:3:2002/02/14::ysato@h4.dion.ne.jp:Yuichi SATO:
+○:LDP man-pages:3.37:2008/07/14:ttyname:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.37:2008/07/14:ttyname_r:3:ttyname:3:
+○:LDP man-pages:3.37:2010/09/20:ttyslot:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.37:2008/09/23:twalk:3:tsearch:3:
+@:LDP man-pages:3.37:2010/02/25:tzname:3:tzset:3:
+○:LDP man-pages:3.37:2010/02/25:tzset:3:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2010/09/20:ualarm:3:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/02/25:ulckpwdf:3:getspnam:3:
+○:LDP man-pages:3.37:2008/08/06:ulimit:3:1998/12/06::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.37:2010/02/10:undocumented:3:2005/02/21::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2012/01/18:ungetc:3:gets:3:
+○:LDP man-pages:3.37:1999/09/19:ungetwc:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+○:LDP man-pages:3.37:2008/08/29:unlocked_stdio:3:2001/11/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2008/06/14:unlockpt:3:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2009/09/20:unsetenv:3:setenv:3:
+○:LDP man-pages:3.37:2008/07/02:updwtmp:3:2008/10/08::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.37:2008/07/02:updwtmpx:3:updwtmp:3:
+○:LDP man-pages:3.37:2010/12/03:usleep:3:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2008/06/29:utmpname:3:getutent:3:
+@:LDP man-pages:3.37:2008/06/29:utmpxname:3:getutent:3:
+@:LDP man-pages:3.37:2001/10/14:va_arg:3:stdarg:3:
+@:LDP man-pages:3.37:2001/10/14:va_copy:3:stdarg:3:
+@:LDP man-pages:3.37:2001/10/14:va_end:3:stdarg:3:
+@:LDP man-pages:3.37:2001/10/14:va_start:3:stdarg:3:
+@:LDP man-pages:3.37:2010/09/20:valloc:3:posix_memalign:3:
+@:LDP man-pages:3.37:2001/12/18:vasprintf:3:asprintf:3:
+@:LDP man-pages:3.37:2010/09/15:vdprintf:3:dprintf:3:
+@:LDP man-pages:3.37:2011/09/15:verr:3:err:3:
+@:LDP man-pages:3.37:2011/09/15:verrx:3:err:3:
+@:LDP man-pages:3.37:2011/09/08:versionsort:3:scandir:3:
+@:LDP man-pages:3.37:2011/09/28:vfprintf:3:printf:3:
+@:LDP man-pages:3.37:2011/09/28:vfscanf:3:scanf:3:
+@:LDP man-pages:3.37:2011/09/17:vfwprintf:3:wprintf:3:
+@:LDP man-pages:3.37:2011/09/10:vlimit:3:getrlimit:2:
+@:LDP man-pages:3.37:2011/09/28:vprintf:3:printf:3:
+@:LDP man-pages:3.37:2011/09/28:vscanf:3:scanf:3:
+@:LDP man-pages:3.37:2011/09/28:vsnprintf:3:printf:3:
+@:LDP man-pages:3.37:2011/09/28:vsprintf:3:printf:3:
+@:LDP man-pages:3.37:2011/09/28:vsscanf:3:scanf:3:
+@:LDP man-pages:3.37:2011/09/17:vswprintf:3:wprintf:3:
+@:LDP man-pages:3.37:2008/11/12:vsyslog:3:syslog:3:
+@:LDP man-pages:3.37:2010/09/26:vtimes:3:getrusage:2:
+@:LDP man-pages:3.37:2011/09/15:vwarn:3:err:3:
+@:LDP man-pages:3.37:2011/09/15:vwarnx:3:err:3:
+@:LDP man-pages:3.37:2011/09/17:vwprintf:3:wprintf:3:
+@:LDP man-pages:3.37:2011/09/15:warn:3:err:3:
+@:LDP man-pages:3.37:2011/09/15:warnx:3:err:3:
+☆:LDP man-pages:3.35=>3.37:2011/10/01:wcpcpy:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.37:2011/10/01:wcpncpy:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+☆:LDP man-pages:3.35=>3.37:2011/09/28:wcrtomb:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.37:2010/09/15:wcscasecmp:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.37:2011/09/28:wcscat:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.37:1999/07/25:wcschr:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.37:1999/07/25:wcscmp:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.37:2011/09/28:wcscpy:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.37:1999/07/25:wcscspn:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.37:2010/09/15:wcsdup:3:2004/06/13::ysato444@yahoo.co.jp:Yuichi SATO:
+☆:LDP man-pages:3.35=>3.37:2011/09/28:wcslen:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.37:2010/09/15:wcsncasecmp:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.37:2011/09/28:wcsncat:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.37:2011/09/28:wcsncmp:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.37:2011/09/28:wcsncpy:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.37:2011/10/01:wcsnlen:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+☆:LDP man-pages:3.35=>3.37:2011/10/16:wcsnrtombs:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.37:1999/07/25:wcspbrk:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.37:1999/07/25:wcsrchr:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+☆:LDP man-pages:3.35=>3.37:2011/10/16:wcsrtombs:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.37:1999/07/25:wcsspn:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.37:2011/09/28:wcsstr:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.37:2003/11/01:wcstoimax:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.37:2011/09/28:wcstok:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+☆:LDP man-pages:3.35=>3.37:2011/10/16:wcstombs:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+@:LDP man-pages:3.37:2003/11/01:wcstoumax:3:wcstoimax:3:
+○:LDP man-pages:3.37:2010/09/10:wcswidth:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.37:2011/09/22:wctob:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.37:1999/07/25:wctomb:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+○:LDP man-pages:3.37:1999/07/25:wctrans:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.37:1999/07/25:wctype:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.37:2011/09/28:wcwidth:3:2002/08/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:1999/07/25:wmemchr:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.37:1999/07/25:wmemcmp:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.37:1999/07/25:wmemcpy:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.37:1999/07/25:wmemmove:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+@:LDP man-pages:3.37:2008/08/12:wmempcpy:3:mempcpy:3:
+○:LDP man-pages:3.37:1999/07/25:wmemset:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.37:2008/07/14:wordexp:3:2004/09/29::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.37:2008/07/14:wordfree:3:wordexp:3:
+○:LDP man-pages:3.37:2011/09/17:wprintf:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+○:LDP man-pages:3.37:2003/04/04:xcrypt:3:2004/10/16::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.37:2003/04/04:xdecrypt:3:xcrypt:3:
+○:LDP man-pages:3.37:2007/12/30:xdr:3:2000/01/14::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+@:LDP man-pages:3.37:2008/07/17:xdr_accepted_reply:3:rpc:3:
+@:LDP man-pages:3.37:2007/12/30:xdr_array:3:xdr:3:
+@:LDP man-pages:3.37:2008/07/17:xdr_authunix_parms:3:rpc:3:
+@:LDP man-pages:3.37:2007/12/30:xdr_bool:3:xdr:3:
+@:LDP man-pages:3.37:2007/12/30:xdr_bytes:3:xdr:3:
+@:LDP man-pages:3.37:2008/07/17:xdr_callhdr:3:rpc:3:
+@:LDP man-pages:3.37:2008/07/17:xdr_callmsg:3:rpc:3:
+@:LDP man-pages:3.37:2007/12/30:xdr_char:3:xdr:3:
+@:LDP man-pages:3.37:2007/12/30:xdr_destroy:3:xdr:3:
+@:LDP man-pages:3.37:2007/12/30:xdr_double:3:xdr:3:
+@:LDP man-pages:3.37:2007/12/30:xdr_enum:3:xdr:3:
+@:LDP man-pages:3.37:2007/12/30:xdr_float:3:xdr:3:
+@:LDP man-pages:3.37:2007/12/30:xdr_free:3:xdr:3:
+@:LDP man-pages:3.37:2007/12/30:xdr_getpos:3:xdr:3:
+@:LDP man-pages:3.37:2007/12/30:xdr_inline:3:xdr:3:
+@:LDP man-pages:3.37:2007/12/30:xdr_int:3:xdr:3:
+@:LDP man-pages:3.37:2007/12/30:xdr_long:3:xdr:3:
+@:LDP man-pages:3.37:2007/12/30:xdr_opaque:3:xdr:3:
+@:LDP man-pages:3.37:2008/07/17:xdr_opaque_auth:3:rpc:3:
+@:LDP man-pages:3.37:2008/07/17:xdr_pmap:3:rpc:3:
+@:LDP man-pages:3.37:2008/07/17:xdr_pmaplist:3:rpc:3:
+@:LDP man-pages:3.37:2007/12/30:xdr_pointer:3:xdr:3:
+@:LDP man-pages:3.37:2007/12/30:xdr_reference:3:xdr:3:
+@:LDP man-pages:3.37:2008/07/17:xdr_rejected_reply:3:rpc:3:
+@:LDP man-pages:3.37:2008/07/17:xdr_replymsg:3:rpc:3:
+@:LDP man-pages:3.37:2007/12/30:xdr_setpos:3:xdr:3:
+@:LDP man-pages:3.37:2007/12/30:xdr_short:3:xdr:3:
+@:LDP man-pages:3.37:2007/12/30:xdr_string:3:xdr:3:
+@:LDP man-pages:3.37:2007/12/30:xdr_u_char:3:xdr:3:
+@:LDP man-pages:3.37:2007/12/30:xdr_u_int:3:xdr:3:
+@:LDP man-pages:3.37:2007/12/30:xdr_u_long:3:xdr:3:
+@:LDP man-pages:3.37:2007/12/30:xdr_u_short:3:xdr:3:
+@:LDP man-pages:3.37:2007/12/30:xdr_union:3:xdr:3:
+@:LDP man-pages:3.37:2007/12/30:xdr_vector:3:xdr:3:
+@:LDP man-pages:3.37:2007/12/30:xdr_void:3:xdr:3:
+@:LDP man-pages:3.37:2007/12/30:xdr_wrapstring:3:xdr:3:
+@:LDP man-pages:3.37:2007/12/30:xdrmem_create:3:xdr:3:
+@:LDP man-pages:3.37:2007/12/30:xdrrec_create:3:xdr:3:
+@:LDP man-pages:3.37:2007/12/30:xdrrec_endofrecord:3:xdr:3:
+@:LDP man-pages:3.37:2007/12/30:xdrrec_eof:3:xdr:3:
+@:LDP man-pages:3.37:2007/12/30:xdrrec_skiprecord:3:xdr:3:
+@:LDP man-pages:3.37:2007/12/30:xdrstdio_create:3:xdr:3:
+@:LDP man-pages:3.37:2003/04/04:xencrypt:3:xcrypt:3:
+@:LDP man-pages:3.37:2008/07/17:xprt_register:3:rpc:3:
+@:LDP man-pages:3.37:2008/07/17:xprt_unregister:3:rpc:3:
+○:LDP man-pages:3.37:2008/08/10:y0:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2008/08/10:y0f:3:y0:3:
+@:LDP man-pages:3.37:2008/08/10:y0l:3:y0:3:
+@:LDP man-pages:3.37:2008/08/10:y1:3:y0:3:
+@:LDP man-pages:3.37:2008/08/10:y1f:3:y0:3:
+@:LDP man-pages:3.37:2008/08/10:y1l:3:y0:3:
+@:LDP man-pages:3.37:2008/08/10:yn:3:y0:3:
+@:LDP man-pages:3.37:2008/08/10:ynf:3:y0:3:
+@:LDP man-pages:3.37:2008/08/10:ynl:3:y0:3:
+×:LDP man-pages:3.37:2011/09/21:cciss:4:::::
+○:LDP man-pages:3.37:1994/10/31:console:4:2002/01/14:o:argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.37:2011/09/15:console_codes:4:2008/10/08::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.37:2009/02/28:console_ioctl:4:2008/07/22::argrath@ub32.org:Kentaro Shirakata:
+×:LDP man-pages:3.37:2009/03/31:cpuid:4:::::
+○:LDP man-pages:3.37:2000/03/01:dsp56k:4:2000/07/11::sato@complex.eng.hokudai.ac.jp:Yuichi SATO:
+@:LDP man-pages:3.37:2009/02/01:epoll:4:epoll:7:
+○:LDP man-pages:3.37:2010/08/29:fd:4:1998/01/12:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi:
+@:LDP man-pages:3.37:2008/12/03:fifo:4:fifo:7:
+○:LDP man-pages:3.37:1997/08/02:full:4:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2002/12/31:futex:4:futex:7:
+○:LDP man-pages:3.37:1992/12/17:hd:4:1998/02/05:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi:
+×:LDP man-pages:3.37:2011/09/21:hpsa:4:::::
+○:LDP man-pages:3.37:2010/09/04:initrd:4:2005/10/09:o:amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2007/10/23:intro:4:1998/02/05:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi:
+@:LDP man-pages:3.37:1992/11/21:kmem:4:mem:4:
+○:LDP man-pages:3.37:1995/01/15:lp:4:1998/02/05:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi:
+○:LDP man-pages:3.37:1992/11/21:mem:4:1998/02/05:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi:
+○:LDP man-pages:3.37:1996/02/10:mouse:4:1999/03/24:o:ss236rx@ymg.urban.ne.jp:Shouichi Saito:
+×:LDP man-pages:3.37:2009/03/31:msr:4:::::
+○:LDP man-pages:3.37:2009/02/23:null:4:1998/02/05:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi:
+@:LDP man-pages:3.37:1992/11/21:port:4:mem:4:
+@:LDP man-pages:3.37:2002/10/09:ptmx:4:pts:4:
+○:LDP man-pages:3.37:2002/10/09:pts:4:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:1992/11/21:ram:4:1997/01/12:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi:
+○:LDP man-pages:3.37:2010/08/29:random:4:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2010/02/25:rtc:4:2007/02/08::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.37:1992/12/17:sd:4:1998/02/05::ishikawa@linux.or.jp:ISHIKAWA Mutsumi:
+○:LDP man-pages:3.37:2007/11/25:sk98lin:4:2007/06/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2010/09/04:st:4:2005/06/12::nakano@st.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.37:2003/04/07:tty:4:2003/09/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:1992/12/19:ttyS:4:1998/02/05::ishikawa@linux.or.jp:ISHIKAWA Mutsumi:
+○:LDP man-pages:3.37:2008/10/29:tty_ioctl:4:2004/11/16::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.37:2010/08/29:urandom:4:random:4:
+○:LDP man-pages:3.37:2007/12/17:vcs:4:2001/02/11::sato@complex.eng.hokudai.ac.jp:Yuichi SATO:
+@:LDP man-pages:3.37:2007/12/17:vcsa:4:vcs:4:
+○:LDP man-pages:3.37:1996/10/22:wavelan:4:1998/02/10::ishikawa@linux.or.jp:ISHIKAWA Mutsumi:
+@:LDP man-pages:3.37:2009/02/23:zero:4:null:4:
+○:LDP man-pages:3.37:2008/06/15:acct:5:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:1994/11/28:charmap:5:2008/07/22::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.37:2011/09/16:complex:5:complex:7:
+☆:LDP man-pages:3.35=>3.37:2012/01/17:core:5:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2001/12/26:dir_colors:5:2002/01/14::ysato@h4.dion.ne.jp:Yuichi SATO:
+☆:LDP man-pages:3.24=>3.37:2010/06/19:elf:5:2005/11/03::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.37:2009/07/25:environ:5:environ:7:
+☆:LDP man-pages:3.24=>3.37:2010/05/24:filesystems:5:2008/02/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2010/05/24:fs:5:filesystems:5:
+○:LDP man-pages:3.37:2000/08/27:ftpusers:5:2001/03/12::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+☆:LDP man-pages:3.29=>3.37:2010/10/21:group:5:2005/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2003/08/23:host.conf:5:2003/10/15::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.37:2002/06/16:hosts:5:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2003/08/24:hosts.equiv:5:2005/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2007/10/23:intro:5:1998/10/13::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+@:LDP man-pages:3.37:2009/01/26:ipc:5:svipc:7:
+○:LDP man-pages:3.37:1993/07/24:issue:5:1998/07/25::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.37:2008/06/17:locale:5:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:1992/12/29:motd:5:1998/2/4::nagoya@cc.hit-u.ac.jp:Hiroaki Nagoya:
+×:LDP man-pages:3.37:2008/09/04:networks:5:::::
+○:LDP man-pages:3.37:1992/12/29:nologin:5:1998/02/18::rui@linux.or.jp:Ueyama Rui:
+○:LDP man-pages:3.37:1999/10/01:nscd.conf:5:2006/07/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:1999/01/17:nsswitch.conf:5:2001/10/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+※:LDP man-pages:3.37:2008/08/15:numa_maps:5:numa:7:
+☆:LDP man-pages:3.29=>3.37:2012/02/14:passwd:5:2006/07/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.24=>3.37:2012/02/08:proc:5:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2008/09/23:protocols:5:2008/07/22::argrath@ub32.org:Kentaro Shirakata:
+☆:LDP man-pages:3.35=>3.37:2012/02/08:resolv.conf:5:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2012/02/08:resolver:5:resolv.conf:5:
+○:LDP man-pages:3.37:1985/09/26:rpc:5:2008/07/22::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.37:1992/12/29:securetty:5:2003/01/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2010/05/22:services:5:2002/08/14::amotoki@dd.iij4u.or.jp:Akihiro Motoki:
+○:LDP man-pages:3.37:1993/11/21:shells:5:2000/12/11::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.37:2001/06/19:slabinfo:5:2001/09/10::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.37:1996/10/21:termcap:5:2000/10/12::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.37:1993/07/24:ttytype:5:1998/02/10::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+☆:LDP man-pages:3.25=>3.37:2010/08/31:tzfile:5:1999/09/14::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.37:2011/09/28:utmp:5:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2011/09/28:utmpx:5:utmp:5:
+@:LDP man-pages:3.37:2011/09/28:wtmp:5:utmp:5:
+○:LDP man-pages:3.37:2007/10/23:intro:6:1997/11/15::pessi@kmc.kyoto-u.ac.jp:II Ryouta:
+×:LDP man-pages:3.37:2010/10/02:aio:7:::::
+×:LDP man-pages:3.37:2010/09/20:armscii-8:7:::::
+○:LDP man-pages:3.37:2008/11/25:arp:7:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2009/02/12:ascii:7:2006/04/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2010/09/19:boot:7:2005/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2007/12/16:bootparam:7:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.32=>3.37:2012/03/05:capabilities:7:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2008/06/03:charsets:7:2008/07/22::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.37:2011/09/16:complex:7:2006/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+×:LDP man-pages:3.37:2010/09/20:cp1251:7:::::
+×:LDP man-pages:3.37:2008/11/12:cpuset:7:::::
+○:LDP man-pages:3.37:2008/06/03:credentials:7:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2008/11/20:ddp:7:1999/12/06::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.37:2009/07/25:environ:7:2006/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2009/02/01:epoll:7:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.32=>3.37:2012/01/18:feature_test_macros:7:2007/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2008/12/03:fifo:7:2006/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2002/12/31:futex:7:2006/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+※:LDP man-pages:3.37:2009/01/13:glibc:7:libc:7:
+○:LDP man-pages:3.37:2003/08/24:glob:7:2003/09/28::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.37:2009/03/30:hier:7:2002/01/14::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+×:LDP man-pages:3.37:2010/11/07:hostname:7:::::
+○:LDP man-pages:3.37:2010/02/25:icmp:7:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.25=>3.37:2011/12/07:inotify:7:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:1993/04/23:intro:7:2005/12/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.25=>3.37:2011/09/22:ip:7:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2011/09/08:ipv6:7:2006/01/14::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.37:1999/05/31:iso-8859-1:7:iso_8859-1:7:
+※:LDP man-pages:3.37:2010/09/20:iso-8859-10:7:iso_8859-10:7:
+※:LDP man-pages:3.37:2010/09/20:iso-8859-11:7:iso_8859-11:7:
+※:LDP man-pages:3.37:2010/09/20:iso-8859-13:7:iso_8859-13:7:
+※:LDP man-pages:3.37:2010/09/20:iso-8859-14:7:iso_8859-14:7:
+@:LDP man-pages:3.37:1999/05/31:iso-8859-15:7:iso_8859-15:7:
+@:LDP man-pages:3.37:2003/03/05:iso-8859-16:7:iso_8859-16:7:
+@:LDP man-pages:3.37:2007/11/25:iso-8859-2:7:iso_8859-2:7:
+※:LDP man-pages:3.37:2010/09/20:iso-8859-3:7:iso_8859-3:7:
+※:LDP man-pages:3.37:2009/01/24:iso-8859-4:7:iso_8859-4:7:
+※:LDP man-pages:3.37:2010/09/20:iso-8859-5:7:iso_8859-5:7:
+※:LDP man-pages:3.37:2010/09/20:iso-8859-6:7:iso_8859-6:7:
+@:LDP man-pages:3.37:2008/10/30:iso-8859-7:7:iso_8859-7:7:
+※:LDP man-pages:3.37:2010/09/20:iso-8859-8:7:iso_8859-8:7:
+@:LDP man-pages:3.37:2002/09/24:iso-8859-9:7:iso_8859-9:7:
+○:LDP man-pages:3.37:1999/05/31:iso_8859-1:7:2002/09/14::argrath@ub32.org:Kentaro Shirakata:
+×:LDP man-pages:3.37:2010/09/20:iso_8859-10:7:::::
+×:LDP man-pages:3.37:2010/09/20:iso_8859-11:7:::::
+×:LDP man-pages:3.37:2010/09/20:iso_8859-13:7:::::
+×:LDP man-pages:3.37:2010/09/20:iso_8859-14:7:::::
+○:LDP man-pages:3.37:1999/05/31:iso_8859-15:7:2002/09/28::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+○:LDP man-pages:3.37:2003/03/05:iso_8859-16:7:2003/09/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2007/11/25:iso_8859-2:7:2002/09/28::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+×:LDP man-pages:3.37:2010/09/20:iso_8859-3:7:::::
+×:LDP man-pages:3.37:2009/01/24:iso_8859-4:7:::::
+×:LDP man-pages:3.37:2010/09/20:iso_8859-5:7:::::
+×:LDP man-pages:3.37:2010/09/20:iso_8859-6:7:::::
+○:LDP man-pages:3.37:2008/10/30:iso_8859-7:7:2002/09/28::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+×:LDP man-pages:3.37:2010/09/20:iso_8859-8:7:::::
+○:LDP man-pages:3.37:2002/09/24:iso_8859-9:7:2003/01/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:1999/05/31:iso_8859_1:7:iso_8859-1:7:
+※:LDP man-pages:3.37:2010/09/20:iso_8859_10:7:iso_8859-10:7:
+※:LDP man-pages:3.37:2010/09/20:iso_8859_11:7:iso_8859-11:7:
+※:LDP man-pages:3.37:2010/09/20:iso_8859_13:7:iso_8859-13:7:
+※:LDP man-pages:3.37:2010/09/20:iso_8859_14:7:iso_8859-14:7:
+@:LDP man-pages:3.37:1999/05/31:iso_8859_15:7:iso_8859-15:7:
+@:LDP man-pages:3.37:2003/03/05:iso_8859_16:7:iso_8859-16:7:
+@:LDP man-pages:3.37:2007/11/25:iso_8859_2:7:iso_8859-2:7:
+※:LDP man-pages:3.37:2010/09/20:iso_8859_3:7:iso_8859-3:7:
+※:LDP man-pages:3.37:2009/01/24:iso_8859_4:7:iso_8859-4:7:
+※:LDP man-pages:3.37:2010/09/20:iso_8859_5:7:iso_8859-5:7:
+※:LDP man-pages:3.37:2010/09/20:iso_8859_6:7:iso_8859-6:7:
+@:LDP man-pages:3.37:2008/10/30:iso_8859_7:7:iso_8859-7:7:
+※:LDP man-pages:3.37:2010/09/20:iso_8859_8:7:iso_8859-8:7:
+@:LDP man-pages:3.37:2002/09/24:iso_8859_9:7:iso_8859-9:7:
+○:LDP man-pages:3.37:2010/10/24:koi8-r:7:2001/07/14::ysato@h4.dion.ne.jp:Yuichi SATO:
+×:LDP man-pages:3.37:2010/09/20:koi8-u:7:::::
+@:LDP man-pages:3.37:1999/05/31:latin1:7:iso_8859-1:7:
+@:LDP man-pages:3.37:2003/03/05:latin10:7:iso_8859-16:7:
+@:LDP man-pages:3.37:2007/11/25:latin2:7:iso_8859-2:7:
+※:LDP man-pages:3.37:2010/09/20:latin3:7:iso_8859-3:7:
+※:LDP man-pages:3.37:2009/01/24:latin4:7:iso_8859-4:7:
+@:LDP man-pages:3.37:2002/09/24:latin5:7:iso_8859-9:7:
+※:LDP man-pages:3.37:2010/09/20:latin6:7:iso_8859-10:7:
+※:LDP man-pages:3.37:2010/09/20:latin7:7:iso_8859-13:7:
+※:LDP man-pages:3.37:2010/09/20:latin8:7:iso_8859-14:7:
+@:LDP man-pages:3.37:1999/05/31:latin9:7:iso_8859-15:7:
+×:LDP man-pages:3.37:2009/01/13:libc:7:::::
+○:LDP man-pages:3.37:2008/12/05:locale:7:2006/02/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2004/09/15:mailaddr:7:2005/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.35=>3.37:2011/10/05:man:7:2007/06/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2008/10/28:man-pages:7:2008/02/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2008/08/11:math_error:7:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.32=>3.37:1999/07/11:mdoc:7:2008/10/08::argrath@ub32.org:Kentaro Shirakata:
+c:LDP man-pages:3.32=>3.37:1993/12/30:mdoc.samples:7:1999/01/21::man-jp@freebsd.org:FreeBSD jpman project:http://www.jp.freebsd.org/man-jp/
+○:LDP man-pages:3.37:2009/09/27:mq_overview:7:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2009/01/14:netdevice:7:2009/03/05::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.37:2008/11/11:netlink:7:2006/07/12::ysato444@yahoo.co.jp:Yuichi SATO:
+×:LDP man-pages:3.37:2008/08/15:numa:7:::::
+○:LDP man-pages:3.37:2011/09/09:operator:7:2004/11/16::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.37:2008/08/08:packet:7:2005/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2009/12/05:path_resolution:7:2007/06/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2005/12/08:pipe:7:2005/12/27::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2007/12/21:posixoptions:7:2005/01/14::ysato444@yahoo.co.jp:Yuichi SATO:
+☆:LDP man-pages:3.31=>3.37:2010/11/14:pthreads:7:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2005/10/10:pty:7:2005/10/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2008/11/20:raw:7:2007/01/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2009/01/12:regex:7:1998/07/08::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+×:LDP man-pages:3.37:2010/09/10:rtld-audit:7:::::
+○:LDP man-pages:3.37:2008/08/08:rtnetlink:7:2001/03/11::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.37:2010/05/22:sem_overview:7:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2010/09/10:shm_overview:7:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+×:LDP man-pages:3.37:2011/09/09:sigevent:7:::::
+○:LDP man-pages:3.37:2011/09/18:signal:7:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.24=>3.37:2010/06/13:socket:7:2007/01/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:2.67=>3.37:2007/12/20:spufs:7:2007/10/23::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2009/06/01:standards:7:2006/08/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2000/11/16:suffixes:7:2001/04/24::ysato@h4.dion.ne.jp:Yuichi SATO:
+○:LDP man-pages:3.37:2009/01/26:svipc:7:2006/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+×:LDP man-pages:3.37:2008/06/18:symlink:7:::::
+☆:LDP man-pages:3.25=>3.37:2010/09/10:tcp:7:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2006/12/28:termio:7:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2010/02/25:time:7:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+※:LDP man-pages:3.37:2010/09/20:tis-620:7:iso_8859-11:7:
+☆:LDP man-pages:3.24=>3.37:2010/06/13:udp:7:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2008/12/03:udplite:7:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2001/05/11:unicode:7:2001/07/14::ysato@h4.dion.ne.jp:Yuichi SATO:
+○:LDP man-pages:3.37:2001/12/22:units:7:2002/01/14::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+☆:LDP man-pages:3.25=>3.37:2011/09/15:unix:7:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2000/03/14:uri:7:2008/07/22::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.37:2000/03/14:url:7:uri:7:
+@:LDP man-pages:3.37:2000/03/14:urn:7:uri:7:
+○:LDP man-pages:3.37:2001/05/11:utf-8:7:2001/07/14::ysato@h4.dion.ne.jp:Yuichi SATO:
+@:LDP man-pages:3.37:2001/05/11:utf8:7:utf-8:7:
+○:LDP man-pages:3.37:2008/08/08:x25:7:1999/12/06::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.37:2007/10/23:intro:8:2008/02/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.37:2012/03/06:ld-linux:8:ld.so:8:
+@:LDP man-pages:3.37:2012/03/06:ld-linux.so:8:ld.so:8:
+☆:LDP man-pages:3.35=>3.37:2012/03/06:ld.so:8:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.37:2009/04/15:ldconfig:8:2002/08/20::ysato@h4.dion.ne.jp:Yuichi SATO:The ancestor is in ld.so.
+○:LDP man-pages:3.37:2008/12/05:nscd:8:2009/03/14::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.37:1998/11/01:sync:8:2000/06/13::sato@complex.eng.hokudai.ac.jp:Yuichi SATO:
+○:LDP man-pages:3.37:2007/05/18:tzselect:8:2002/01/14::ysato@h4.dion.ne.jp:Yuichi SATO:
+○:LDP man-pages:3.37:0000/00/00:zdump:8:1999/09/14::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.37:2010/02/25:zic:8:2001/04/04::sato@complex.eng.hokudai.ac.jp:Yuichi SATO: