OSDN Git Service

(split) LDP man-pages の original/ を v3.25 に更新。 LDP-3.25-final
authorAkihiro MOTOKI <amotoki@users.sourceforge.jp>
Sun, 24 Oct 2010 02:23:31 +0000 (11:23 +0900)
committerAkihiro MOTOKI <amotoki@users.sourceforge.jp>
Sun, 24 Oct 2010 02:24:27 +0000 (11:24 +0900)
statvfs.2 -> statvfs.3 への移動を draft, release の翻訳にも適用。

82 files changed:
draft/man3/statvfs.3 [moved from draft/man2/statvfs.2 with 100% similarity]
original/man-pages.lsm
original/man2/fcntl.2
original/man2/fstatvfs.2
original/man2/futex.2
original/man2/getpriority.2
original/man2/getrusage.2
original/man2/gettimeofday.2
original/man2/ioprio_set.2
original/man2/madvise.2
original/man2/migrate_pages.2 [new file with mode: 0644]
original/man2/mlock.2
original/man2/mmap.2
original/man2/mount.2
original/man2/move_pages.2
original/man2/mremap.2
original/man2/msgctl.2
original/man2/msgop.2
original/man2/nice.2
original/man2/open.2
original/man2/poll.2
original/man2/posix_fadvise.2
original/man2/prctl.2
original/man2/pread.2
original/man2/quotactl.2
original/man2/recv.2
original/man2/sched_setscheduler.2
original/man2/select.2
original/man2/select_tut.2
original/man2/semctl.2
original/man2/setsid.2
original/man2/shmctl.2
original/man2/sigaction.2
original/man2/sigprocmask.2
original/man2/statfs.2
original/man2/statvfs.2
original/man2/swapon.2
original/man2/sync_file_range.2
original/man2/syscalls.2
original/man2/timer_create.2
original/man2/timer_delete.2
original/man2/timer_getoverrun.2
original/man2/timer_settime.2
original/man2/umount.2
original/man2/vfork.2
original/man3/cproj.3
original/man3/crypt.3
original/man3/fenv.3
original/man3/fmemopen.3
original/man3/fopencookie.3
original/man3/fstatvfs.3 [new file with mode: 0644]
original/man3/ftw.3
original/man3/getaddrinfo.3
original/man3/getline.3
original/man3/getpass.3
original/man3/log.3
original/man3/log10.3
original/man3/log2.3
original/man3/mkostemps.3 [new file with mode: 0644]
original/man3/mkstemp.3
original/man3/mkstemps.3 [new file with mode: 0644]
original/man3/opendir.3
original/man3/openpty.3
original/man3/resolver.3
original/man3/statvfs.3 [new file with mode: 0644]
original/man3/sysconf.3
original/man3/termios.3
original/man5/core.5
original/man5/elf.5
original/man5/filesystems.5
original/man5/proc.5
original/man5/rpc.5
original/man5/services.5
original/man7/capabilities.7
original/man7/mdoc.7
original/man7/mdoc.samples.7
original/man7/sem_overview.7
original/man7/signal.7
original/man7/socket.7
original/man7/udp.7
release/man3/statvfs.3 [moved from release/man2/statvfs.2 with 100% similarity]
translation_list

similarity index 100%
rename from draft/man2/statvfs.2
rename to draft/man3/statvfs.3
index e802253..4518674 100644 (file)
@@ -1,13 +1,13 @@
 Begin3
 Title:          Section 2, 3, 4, 5 and 7 man pages for Linux
-Version:        3.24
-Entered-date:   2010-02-25
+Version:        3.25
+Entered-date:   2010-06-20
 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
-                1608k man-pages-3.24.tar.gz
+                1623k man-pages-3.25.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
index c51b705..b01d323 100644 (file)
@@ -4,7 +4,7 @@
 .\" This manpage is Copyright (C) 1992 Drew Eckhardt;
 .\"                 and Copyright (C) 1993 Michael Haardt, Ian Jackson;
 .\"                 and Copyright (C) 1998 Jamie Lokier;
-.\"                 and Copyright (C) 2002 Michael Kerrisk.
+.\"                 and Copyright (C) 2002-2010 Michael Kerrisk.
 .\"
 .\" Permission is granted to make and distribute verbatim copies of this
 .\" manual provided the copyright notice and this permission notice are
 .\" 2009-09-30, Michael Kerrisk
 .\"     Note obsolete F_SETOWN behavior with threads.
 .\"     Document F_SETOWN_EX and F_GETOWN_EX
+.\" 2010-06-17, Michael Kerrisk
+.\"    Document F_SETPIPE_SZ and F_GETPIPE_SZ.
 .\"
-.TH FCNTL 2 2009-10-17 "Linux" "Linux Programmer's Manual"
+.TH FCNTL 2 2010-06-19 "Linux" "Linux Programmer's Manual"
 .SH NAME
 fcntl \- manipulate file descriptor
 .SH SYNOPSIS
@@ -998,6 +1000,42 @@ which provides a much superior interface for obtaining notifications of
 file system events.
 See
 .BR inotify (7).
+.SS "Changing the capacity of a pipe"
+.TP
+.BR F_SETPIPE_SZ " (\fIlong\fP; since Linux 2.6.35)"
+Change the capacity of the pipe referred to by
+.I fd
+to be at least
+.I arg
+bytes.
+An unprivileged process can adjust the pipe capacity to any value
+between the system page size and the limit defined in
+.IR /proc/sys/fs/pipe-size-max
+(see
+.BR proc (5)).
+Attempts to set the pipe capacity below the page size are silently
+rounded up to the page size.
+Attempts by an unprivileged process to set the pipe capacity above the limit in
+.IR /proc/sys/fs/pipe-size-max
+yield the error
+.BR EPERM ;
+a privileged process
+.RB ( CAP_SYS_RESOURCE )
+can override the limit.
+When allocating the buffer for the pipe,
+the kernel may use a capacity larger than
+.IR arg ,
+if that is convenient for the implementation.
+The
+.B F_GETPIPE_SZ
+operation returns the actual size used.
+Attempting to set the pipe capacity smaller than the amount
+of buffer space currently used to store data produces the error
+.BR EBUSY .
+.TP
+.BR F_GETPIPE_SZ " (\fIvoid\fP; since Linux 2.6.35)"
+Return (as the function result) the capacity of the pipe referred to by
+.IR fd .
 .SH "RETURN VALUE"
 For a successful call, the return value depends on the operation:
 .TP 0.9i
@@ -1022,6 +1060,9 @@ for traditional
 .B SIGIO
 behavior.
 .TP
+.B F_GETPIPE_SZ
+The pipe capacity.
+.TP
 All other commands
 Zero.
 .PP
@@ -1111,6 +1152,8 @@ is specified in POSIX.1-2008.
 
 .BR F_GETOWN_EX ,
 .BR F_SETOWN_EX ,
+.BR F_SETPIPE_SZ ,
+.BR F_GETPIPE_SZ ,
 .BR F_GETSIG ,
 .BR F_SETSIG ,
 .BR F_NOTIFY ,
@@ -1159,14 +1202,18 @@ will be \-1, and
 .I errno
 will contain the (positive) process group ID.
 The Linux-specific
-.BR F_SETOWN_EX
-and
 .BR F_GETOWN_EX
-operations avoid this problem.
+operation avoids this problem.
 .\" mtk, Dec 04: some limited testing on alpha and ia64 seems to
 .\" indicate that ANY negative PGID value will cause F_GETOWN
 .\" to misinterpret the return as an error. Some other architectures
 .\" seem to have the same range check as i386.
+Since glibc version 2.11, glibc makes the kernel
+.B F_GETOWN
+problem invisible by implementing
+.B F_GETOWN
+using
+.BR F_GETOWN_EX .
 
 In Linux 2.4 and earlier, there is bug that can occur
 when an unprivileged process uses
index 7343466..adec9dd 100644 (file)
@@ -1 +1 @@
-.so man2/statvfs.2
+.so man3/statvfs.3
index c1164b9..d9027a5 100644 (file)
@@ -14,7 +14,7 @@
 .\" material in the kernel source file Documentation/pi-futex.txt.
 .\" 2.6.25 adds FUTEX_WAKE_BITSET, FUTEX_WAIT_BITSET
 .\"
-.TH FUTEX 2 2008-11-27 "Linux" "Linux Programmer's Manual"
+.TH FUTEX 2 2010-05-22 "Linux" "Linux Programmer's Manual"
 .SH NAME
 futex \- Fast Userspace Locking system call
 .SH SYNOPSIS
@@ -264,6 +264,10 @@ read the sources of the futex userspace library referenced below.
 .BR futex (7)
 .PP
 \fIFuss, Futexes and Furwocks: Fast Userlevel Locking in Linux\fP
-(proceedings of the Ottawa Linux Symposium 2002),
-futex example library, futex-*.tar.bz2
-<URL:ftp://ftp.nl.kernel.org/pub/linux/kernel/people/rusty/>.
+(proceedings of the Ottawa Linux Symposium 2002), online at
+.br
+http://kernel.org/doc/ols/2002/ols2002-pages-479-495.pdf
+.PP
+Futex example library, futex-*.tar.bz2 at
+.br
+ftp://ftp.nl.kernel.org/pub/linux/kernel/people/rusty/.
index 1168a63..302d88a 100644 (file)
@@ -224,7 +224,7 @@ defined in
 .BR nice (1),
 .BR fork (2),
 .BR capabilities (7),
-.BR renice (8)
+.BR renice (1)
 .sp
 .I Documentation/scheduler/sched-nice-design.txt
 in the kernel source tree (since Linux 2.6.23).
index 2771817..0e5bc0a 100644 (file)
 .\"    when SIGCHLD is being ignored is fixed in 2.6.9.
 .\" 2008-02-22, Sripathi Kodi <sripathik@in.ibm.com>: Document RUSAGE_THREAD
 .\" 2008-05-25, mtk, clarify RUSAGE_CHILDREN + other clean-ups.
+.\" 2010-05-24, Mark Hills <mark@pogo.org.uk>: Description of fields,
+.\"     document ru_maxrss
+.\" 2010-05-24, mtk, enhanced description of various fields
 .\"
-.TH GETRUSAGE 2 2009-08-25 "Linux" "Linux Programmer's Manual"
+.TH GETRUSAGE 2 2010-06-14 "Linux" "Linux Programmer's Manual"
 .SH NAME
 getrusage \- get resource usage
 .SH SYNOPSIS
@@ -70,25 +73,110 @@ which has the following form:
 .in +4n
 .nf
 struct rusage {
-    struct timeval ru_utime; /* user time used */
-    struct timeval ru_stime; /* system time used */
+    struct timeval ru_utime; /* user CPU time used */
+    struct timeval ru_stime; /* system CPU time used */
     long   ru_maxrss;        /* maximum resident set size */
     long   ru_ixrss;         /* integral shared memory size */
     long   ru_idrss;         /* integral unshared data size */
     long   ru_isrss;         /* integral unshared stack size */
-    long   ru_minflt;        /* page reclaims */
-    long   ru_majflt;        /* page faults */
+    long   ru_minflt;        /* page reclaims (soft page faults) */
+    long   ru_majflt;        /* page faults (hard page faults) */
     long   ru_nswap;         /* swaps */
     long   ru_inblock;       /* block input operations */
     long   ru_oublock;       /* block output operations */
-    long   ru_msgsnd;        /* messages sent */
-    long   ru_msgrcv;        /* messages received */
+    long   ru_msgsnd;        /* IPC messages sent */
+    long   ru_msgrcv;        /* IPC messages received */
     long   ru_nsignals;      /* signals received */
     long   ru_nvcsw;         /* voluntary context switches */
     long   ru_nivcsw;        /* involuntary context switches */
 };
 .fi
 .in
+.PP
+Not all fields are completed;
+unmaintained fields are set to zero by the kernel.
+(The unmaintained fields are provided for compatibility with other systems,
+and because they may one day be supported on Linux.)
+The fields are interpreted as follows:
+.TP
+.I ru_utime
+This is the total amount of time spent executing in user mode,
+expressed in a
+.I timeval
+structure (seconds plus microseconds).
+.TP
+.I ru_stime
+This is the total amount of time spent executing in kernel mode,
+expressed in a
+.I timeval
+structure (seconds plus microseconds).
+.TP
+.IR ru_maxrss " (since Linux 2.6.32)"
+This is the maximum resident set size used (in kilobytes). For
+.BR RUSAGE_CHILDREN ,
+this is the resident set size of the largest child, not the maximum
+resident set size of the process tree.
+.TP
+.IR ru_ixrss " (unmaintained)"
+This field is currently unused on Linux.
+.\" On some systems,
+.\" this is the integral of the text segment memory consumption,
+.\" expressed in kilobyte-seconds.
+.TP
+.IR ru_idrss " (unmaintained)"
+This field is currently unused on Linux.
+.\" On some systems, this is the integral of the data segment memory consumption,
+.\" expressed in kilobyte-seconds.
+.TP
+.IR ru_isrss " (unmaintained)"
+This field is currently unused on Linux.
+.\" On some systems, this is the integral of the stack memory consumption,
+.\" expressed in kilobyte-seconds.
+.TP
+.I ru_minflt
+The number of page faults serviced without any I/O activity; here
+I/O activity is avoided by \*(lqreclaiming\*(rq a page frame from
+the list of pages awaiting reallocation.
+.TP
+.I ru_majflt
+The number of page faults serviced that required I/O activity.
+.TP
+.IR ru_nswap  " (unmaintained)"
+This field is currently unused on Linux.
+.\" On some systems, this is the number of swaps out of physical memory.
+.TP
+.IR ru_inblock " (since Linux 2.6.22)"
+The number of times the file system had to perform input.
+.TP
+.IR ru_oublock " (since Linux 2.6.22)"
+The number of times the file system had to perform output.
+.TP
+.IR ru_msgsnd " (unmaintained)"
+This field is currently unused on Linux.
+.\" On FreeBSD 6.2, this appears to measure messages sent over sockets
+.\" On some systems,
+.\" this field records the number of messages sent over sockets.
+.TP
+.IR ru_msgrcv " (unmaintained)"
+This field is currently unused on Linux.
+.\" On FreeBSD 6.2, this appears to measure messages received over sockets
+.\" On some systems,
+.\" this field records the number of messages received over sockets.
+.TP
+.IR ru_nsignals " (unmaintained)"
+This field is currently unused on Linux.
+.\" On some systems, this field records the number of signals received.
+.TP
+.IR ru_nvcsw " (since Linux 2.6)"
+The number of times a context switch resulted due to a process
+voluntarily giving up the processor before its time slice was
+completed (usually to await availability of a resource).
+.TP
+.IR ru_nivcsw " (since Linux 2.6)"
+The number of times a context switch resulted due to a higher
+priority process becoming runnable or because the current process
+exceeded its time slice.
+.PP
 .SH "RETURN VALUE"
 On success, zero is returned.
 On error, \-1 is returned, and
@@ -140,24 +228,6 @@ This nonconformance is rectified in Linux 2.6.9 and later.
 .LP
 The structure definition shown at the start of this page
 was taken from 4.3BSD Reno.
-Not all fields are meaningful under Linux.
-In Linux 2.4 only the fields
-.IR ru_utime ,
-.IR ru_stime ,
-.IR ru_minflt ,
-and
-.I ru_majflt
-are maintained.
-Since Linux 2.6,
-.I ru_nvcsw
-and
-.I ru_nivcsw
-are also maintained.
-Since Linux 2.6.22,
-.I ru_inblock
-and
-.I ru_oublock
-are also maintained.
 
 See also the description of
 .IR /proc/PID/stat
index 817d8fa..1807404 100644 (file)
@@ -221,7 +221,7 @@ but not
 .BR settimeofday ().
 POSIX.1-2008 marks
 .BR gettimeofday ()
-as obsolete, recomending the use of
+as obsolete, recommending the use of
 .BR clock_gettime (2)
 instead.
 .SH NOTES
index f88562b..37b4dc1 100644 (file)
@@ -308,7 +308,7 @@ must follow both rules, or the call will fail with the error
 .SH BUGS
 .\" 6 May 07: Bug report raised:
 .\" http://sources.redhat.com/bugzilla/show_bug.cgi?id=4464
-.\" Ulriich Drepper replied that he wasn't going to add these
+.\" Ulrich Drepper replied that he wasn't going to add these
 .\" to glibc.
 Glibc does not yet provide a suitable header file defining
 the function prototypes and macros described on this page.
index fec9fb1..b753598 100644 (file)
 .\" Based on comments from mm/filemap.c. Last modified on 10-06-2001
 .\" Modified, 25 Feb 2002, Michael Kerrisk, <mtk.manpages@gmail.com>
 .\"    Added notes on MADV_DONTNEED
-.\" FIXME
-.\" 2.6.32 added MADV_HWPOISON, MADV_MERGEABLE, and MADV_UNMERGEABLE
-.\" 2.6.33 added MADV_SOFT_OFFLINE
+.\" 2010-06-19, mtk, Added documentation of MADV_MERGEABLE and
+.\"     MADV_UNMERGEABLE
+.\" 2010-06-15, Andi Kleen, Add documentation of MADV_HWPOISON.
+.\" 2010-06-19, Andi Kleen, Add documentation of MADV_SOFT_OFFLINE.
 .\"
-.TH MADVISE 2 2008-04-22 "Linux" "Linux Programmer's Manual"
+.TH MADVISE 2 2010-06-20 "Linux" "Linux Programmer's Manual"
 .SH NAME
 madvise \- give advice about use of memory
 .SH SYNOPSIS
@@ -144,6 +145,68 @@ Undo the effect of
 .BR MADV_DONTFORK ,
 restoring the default behavior, whereby a mapping is inherited across
 .BR fork (2).
+.TP
+.BR MADV_HWPOISON " (Since Linux 2.6.32)
+Poison a page and handle it like a hardware memory corruption.
+This operation is only available for privileged
+.RB ( CAP_SYS_ADMIN )
+processes.
+This operation may result in the calling process receiving a
+.B SIGBUS
+and the page being unmapped.
+This feature is intended for testing of memory error-handling code;
+it is only available if the kernel was configured with
+.BR CONFIG_MEMORY_FAILURE .
+.TP
+.BR MADV_SOFT_OFFLINE " (Since Linux 2.6.33)
+Soft offline the pages in the range specified by
+.I addr
+and
+.IR length .
+The memory of each page in the specified range is copied to a new page,
+and the original page is offlined
+(i.e., no longer used, and taken out of normal memory management).
+The effect of the
+.B MADV_SOFT_OFFLINE
+operation is normally invisible to (i.e., does not change the semantics of)
+the calling process.
+This feature is intended for testing of memory error-handling code;
+it is only available if the kernel was configured with
+.BR CONFIG_MEMORY_FAILURE .
+.TP
+.BR MADV_MERGEABLE " (since Linux 2.6.32)"
+Enable Kernel Samepage Merging (KSM) for the pages in the range specified by
+.I addr
+and
+.IR length .
+The kernel regularly scans those areas of user memory that have
+been marked as mergeable,
+looking for pages with identical content.
+These are replaced by a single write-protected page (which is automatically
+copied if a process later wants to update the content of the page).
+KSM only merges private anonymous pages (see
+.BR mmap (2)).
+The KSM feature is intended for applications that generate many
+instances of the same data (e.g., virtualization systems such as KVM).
+It can consume a lot of processing power; use with care.
+See the kernel source file
+.I Documentation/vm/ksm.txt
+for more details.
+The
+.BR MADV_MERGEABLE
+and
+.BR MADV_UNMERGEABLE
+operations are only available if the kernel was configured with
+.BR CONFIG_KSM.
+.TP
+.BR MADV_UNMERGEABLE " (since Linux 2.6.32)"
+Undo the effect of an earlier
+.BR MADV_MERGEABLE
+operation on the specified address range;
+KSM unmerges whatever pages it had merged in the address range specified by
+.IR addr
+and
+.IR length .
 .SH "RETURN VALUE"
 On success
 .BR madvise ()
@@ -160,17 +223,32 @@ A kernel resource was temporarily unavailable.
 The map exists, but the area maps something that isn't a file.
 .TP
 .B EINVAL
+This error can occur for the following reasons:
+.RS
+.IP * 3
 The value
 .I len
-is negative,
+is negative.
 .\" .I len
 .\" is zero,
+.IP *
 .I addr
-is not page-aligned,
+is not page-aligned.
+.IP *
 .I advice
-is not a valid value, or the application is attempting
-to release locked or shared pages (with
+is not a valid value
+.IP *
+The application is attempting to release locked or shared pages (with
 .BR MADV_DONTNEED ).
+.IP *
+.BR MADV_MERGEABLE
+or
+.BR MADV_UNMERGEABLE
+was specified in
+.IR advice ,
+but the kernel was not configured with
+.BR CONFIG_KSM .
+.RE
 .TP
 .B EIO
 (for
@@ -201,8 +279,11 @@ for file access.
 
 .BR MADV_REMOVE ,
 .BR MADV_DONTFORK ,
+.BR MADV_DOFORK ,
+.BR MADV_HWPOISON ,
+.BR MADV_MERGEABLE ,
 and
-.B MADV_DOFORK
+.BR MADV_UNMERGEABLE
 are Linux-specific.
 .SH NOTES
 .SS "Linux Notes"
diff --git a/original/man2/migrate_pages.2 b/original/man2/migrate_pages.2
new file mode 100644 (file)
index 0000000..9f8b391
--- /dev/null
@@ -0,0 +1,155 @@
+.\" Hey Emacs! This file is -*- nroff -*- source.
+.\"
+.\" Copyright 2009 Intel Corporation
+.\"                Author: Andi Kleen
+.\" Based on the move_pages manpage which was
+.\" This manpage is Copyright (C) 2006 Silicon Graphics, Inc.
+.\"                               Christoph Lameter
+.\"
+.\" 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.
+.TH MIGRATE_PAGES 2 2010-06-11 "Linux" "Linux Programmer's Manual"
+.SH NAME
+migrate_pages \- move all pages in a process to another set of nodes
+.SH SYNOPSIS
+.nf
+.B #include <numaif.h>
+.sp
+.BI "long migrate_pages(int " pid ", unsigned long " maxnode,
+.BI "                   const unsigned long * " old_nodes,
+.BI "                   const unsigned long * " new_nodes);
+.fi
+.sp
+Link with \fI\-lnuma\fP.
+.SH DESCRIPTION
+.BR migrate_pages ()
+moves all pages of the process
+.I pid
+that are in memory nodes
+.I old_nodes
+to the memory nodes in
+.I new_nodes.
+Pages not located in any node in
+.I old_nodes
+will not be migrated.
+As far as possible,
+the kernel maintains the relative topology relationship inside
+.I old_nodes
+during the migration to
+.IR new_nodes .
+
+The
+.I old_nodes
+and
+.I new_nodes
+arguments are pointers to bit masks of node numbers, with up to
+.I maxnode
+bits in each mask.
+These masks are maintained as arrays of unsigned
+.I long
+integers (in the last
+.I long
+integer, the bits beyond those specified by
+.I maxnode
+are ignored).
+The
+.I maxnode
+argument is the maximum node number in the bit mask plus one (this is the same
+as in
+.BR mbind (2),
+but different from
+.BR select (2))
+
+The
+.I pid
+argument is the ID of the process whose pages are to be moved.
+To move pages in another process,
+the caller must be privileged
+.RB ( CAP_SYS_NICE )
+or the real or effective user ID of the calling process must match the
+real or saved-set user ID of the target process.
+If
+.I pid
+is 0, then
+.BR migrate_pages ()
+moves pages of the calling process.
+
+Pages shared with another process will only be moved if the initiating
+process has the
+.B CAP_SYS_NICE
+privilege.
+.SH "RETURN VALUE"
+On success
+.BR migrate_pages ()
+returns zero.
+On error, it returns \-1, and sets
+.I errno
+to indicate the error.
+.SH ERRORS
+.TP
+.B EPERM
+Insufficient privilege
+.RB ( CAP_SYS_NICE )
+to move pages of the process specified by
+.IR pid ,
+or insufficient privilege
+.RB ( CAP_SYS_NICE )
+to access the specified target nodes.
+.TP
+.B ESRCH
+No process matching
+.I pid
+could be found.
+.\" FIXME There are other errors
+.SH VERSIONS
+The
+.BR migrate_pages ()
+system call first appeared on Linux in version 2.6.16.
+.SH CONFORMING TO
+This system call is Linux-specific.
+.SH "NOTES"
+For information on library support, see
+.BR numa (7).
+
+Use
+.BR get_mempolicy (2)
+with the
+.B MPOL_F_MEMS_ALLOWED
+flag to obtain the set of nodes that are allowed by
+the calling process's cpuset.
+Note that this information is subject to change at any
+time by manual or automatic reconfiguration of the cpuset.
+
+Use of
+.BR migrate_pages ()
+may result in pages whose location
+(node) violates the memory policy established for the
+specified addresses (see
+.BR mbind (2))
+and/or the specified process (see
+.BR set_mempolicy (2)).
+That is, memory policy does not constrain the destination
+nodes used by
+.BR migrate_pages ().
+
+The
+.I <numaif.h>
+header is not included with glibc, but requires installing
+.I libnuma-devel
+or a similar package.
+.SH "SEE ALSO"
+.BR get_mempolicy (2),
+.BR mbind (2),
+.BR set_mempolicy (2),
+.BR numa (3),
+.BR numa_maps (5),
+.BR cpuset (7),
+.BR numa (7),
+.BR migratepages (8),
+.BR numa_stat (8)
index 07e3119..aa576a1 100644 (file)
@@ -24,7 +24,7 @@
 .\" Software Foundation, Inc., 59 Temple Place, Suite 330,
 .\" Boston, MA 02111, USA.
 .\"
-.TH MLOCK 2 2008-09-25 "Linux" "Linux Programmer's Manual"
+.TH MLOCK 2 2010-03-05 "Linux" "Linux Programmer's Manual"
 .SH NAME
 mlock, munlock, mlockall, munlockall \- lock and unlock memory
 .SH SYNOPSIS
@@ -283,6 +283,19 @@ down to the nearest page boundary.
 However, POSIX.1-2001 allows an implementation to require that
 .I addr
 is page aligned, so portable applications should ensure this.
+
+The
+.I VmLck
+field of the Linux-specific
+.I /proc/PID/status
+file shows how many kilobytes of memory the calling process has locked using
+.BR mlock (),
+.BR mlockall (),
+.BR shmctl (2)
+.BR SHM_LOCK ,
+and
+.BR mmap (2)
+.BR MAP_LOCKED .
 .SS "Limits and permissions"
 In Linux 2.6.8 and earlier,
 a process must be privileged
@@ -326,4 +339,5 @@ resource limit is encountered.
 .BR setrlimit (2),
 .BR shmctl (2),
 .BR sysconf (3),
+.BR proc (5),
 .BR capabilities (7)
index af539b6..7c3ded1 100644 (file)
@@ -37,7 +37,7 @@
 .\" 2007-07-10, mtk, Added an example program.
 .\" 2008-11-18, mtk, document MAP_STACK
 .\"
-.TH MMAP 2 2009-09-26 "Linux" "Linux Programmer's Manual"
+.TH MMAP 2 2010-06-20 "Linux" "Linux Programmer's Manual"
 .SH NAME
 mmap, munmap \- map or unmap files or devices into memory
 .SH SYNOPSIS
@@ -274,14 +274,6 @@ For a file mapping, this causes read-ahead on the file.
 Later accesses to the mapping will not be blocked by page faults.
 .BR MAP_POPULATE
 is only supported for private mappings since Linux 2.6.23.
-.LP
-Of the above flags, only
-.B MAP_FIXED
-is specified in POSIX.1-2001.
-However, most systems also support
-.B MAP_ANONYMOUS
-(or its synonym
-.BR MAP_ANON ).
 .TP
 .BR MAP_STACK " (since Linux 2.6.27)"
 Allocate the mapping at an address suitable for a process
@@ -295,6 +287,24 @@ support can later be transparently implemented for glibc.
 .\" http://thread.gmane.org/gmane.linux.kernel/720412
 .\" "pthread_create() slow for many threads; also time to revisit 64b
 .\"  context switch optimization?"
+.TP
+.BR MAP_UNINITIALIZED " (since Linux 2.6.33)"
+Don't clear anonymous pages.
+This flag is intended to improve performance on embedded devices.
+This flag is only honored if the kernel was configured with the
+.B CONFIG_MMAP_ALLOW_UNINITIALIZED
+option.
+Because of the security implications,
+that option is normally enabled only on embedded devices
+(i.e., devices where one has complete control of the contents of user memory).
+.LP
+Of the above flags, only
+.B MAP_FIXED
+is specified in POSIX.1-2001.
+However, most systems also support
+.B MAP_ANONYMOUS
+(or its synonym
+.BR MAP_ANON ).
 .LP
 Some systems document the additional flags
 .BR MAP_AUTOGROW ,
index a79bdca..f749033 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 2009-06-26 "Linux" "Linux Programmer's Manual"
+.TH MOUNT 2 2010-05-22 "Linux" "Linux Programmer's Manual"
 .SH NAME
 mount \- mount file system
 .SH SYNOPSIS
@@ -438,7 +438,7 @@ to other processes (except child processes that the caller
 subsequently creates) and vice versa.
 
 The Linux-specific
-.I /proc/PID/self
+.I /proc/PID/mounts
 file exposes the list of mount points in the mount
 namespace of the process with the specified ID; see
 .BR proc (5)
index 3dd1af9..059956b 100644 (file)
@@ -15,7 +15,7 @@
 .\" FIXME Should programs normally be using this API directly, or should
 .\" they rather be using interfaces in the numactl package?
 .\" (e.g., compare with recommendation in mbind(2)).
-.TH MOVE_PAGES 2 2008-10-06 "Linux" "Linux Programmer's Manual"
+.TH MOVE_PAGES 2 2010-06-11 "Linux" "Linux Programmer's Manual"
 .SH NAME
 move_pages \- move individual pages of a process to another node
 .SH SYNOPSIS
@@ -25,6 +25,8 @@ move_pages \- move individual pages of a process to another node
 .BI "long move_pages(int " pid ", unsigned long count, void **" pages ,
 .BI "                const int *" nodes ", int *" status ", int " flags );
 .fi
+.sp
+Link with \fI\-lnuma\fP.
 .SH DESCRIPTION
 .BR move_pages ()
 moves the specified
@@ -48,7 +50,7 @@ or the real or effective user ID of the calling process must match the
 real or saved-set user ID of the target process.
 If
 .I pid
-is 0 then
+is 0, then
 .BR move_pages ()
 moves pages of the calling process.
 
@@ -208,12 +210,18 @@ time by manual or automatic reconfiguration of the cpuset.
 Use of this function may result in pages whose location
 (node) violates the memory policy established for the
 specified addresses (See
-.BR mbind (2)]
-and/or the specified process [See
+.BR mbind (2))
+and/or the specified process (See
 .BR set_mempolicy (2)).
 That is, memory policy does not constrain the destination
 nodes used by
 .BR move_pages ().
+
+The
+.I <numaif.h>
+header is not included with glibc, but requires installing
+.I libnuma-devel
+or a similar package.
 .SH "SEE ALSO"
 .BR get_mempolicy (2),
 .BR mbind (2),
index f9d4068..4bb68ef 100644 (file)
@@ -28,7 +28,7 @@
 .\"            Update for Linux 1.3.87 and later
 .\" 2005-10-11 mtk: Added NOTES for MREMAP_FIXED; revised EINVAL text.
 .\"
-.TH MREMAP 2 2005-09-13 "Linux" "Linux Programmer's Manual"
+.TH MREMAP 2 2010-06-10 "Linux" "Linux Programmer's Manual"
 .SH NAME
 mremap \- remap a virtual memory address
 .SH SYNOPSIS
@@ -38,7 +38,7 @@ mremap \- remap a virtual memory address
 .B #include <sys/mman.h>
 .sp
 .BI "void *mremap(void *" old_address ", size_t " old_size ,
-.BI "             size_t " new_size ", int " flags );
+.BI "             size_t " new_size ", int " flags ", ... /* void *" new_address " */);"
 .fi
 .SH DESCRIPTION
 .BR mremap ()
@@ -54,6 +54,11 @@ aligned.
 virtual memory block.
 \fInew_size\fP is the requested size of the
 virtual memory block after the resize.
+An optional fifth argument,
+.IR new_address ,
+may be provided; see the description of
+.B MREMAP_FIXED
+below.
 
 In Linux the memory is divided into pages.
 A user process has (one or)
index 2ecbdcf..9514f85 100644 (file)
@@ -316,7 +316,7 @@ The
 and
 .B MSG_INFO
 operations are used by the
-.BR ipcs (8)
+.BR ipcs (1)
 program to provide information on allocated resources.
 In the future these may modified or moved to a /proc file system
 interface.
index 2b29cac..673c0d2 100644 (file)
@@ -104,7 +104,7 @@ If sufficient space is available in the queue,
 .BR msgsnd ()
 succeeds immediately.
 (The queue capacity is defined by the
-.I msg_bytes
+.I msg_qbytes
 field in the associated data structure for the message queue.
 During queue creation this field is initialized to
 .B MSGMNB
index 407145b..c7e1d7d 100644 (file)
@@ -108,4 +108,4 @@ returns \-1.
 .BR getpriority (2),
 .BR setpriority (2),
 .BR capabilities (7),
-.BR renice (8)
+.BR renice (1)
index 11bd65e..2fbb6d2 100644 (file)
@@ -48,7 +48,7 @@
 .\" O_TTYINIT.  Eventually these may need to be documented.  --mtk
 .\" FIXME Linux 2.6.33 has O_DSYNC, and a hiddden __O_SYNC.
 .\"
-.TH OPEN 2 2009-09-20 "Linux" "Linux Programmer's Manual"
+.TH OPEN 2 2010-06-14 "Linux" "Linux Programmer's Manual"
 .SH NAME
 open, creat \- open and possibly create a file or device
 .SH SYNOPSIS
@@ -333,9 +333,10 @@ is a symbolic link, then
 .BR open ()
 fails regardless of where the symbolic link points to.
 
+On NFS,
 .B O_EXCL
-is only supported on NFS when using NFSv3 or later on kernel 2.6 or later.
-In environments where NFS
+is only supported when using NFSv3 or later on kernel 2.6 or later.
+In NFS environments where
 .B O_EXCL
 support is not provided, programs that rely on it
 for performing locking tasks will contain a race condition.
@@ -679,7 +680,7 @@ and
 .B O_RSYNC
 to the same numerical value as
 .BR O_SYNC
-Most Linux filesystems don't actually implement the POSIX
+Most Linux file systems don't actually implement the POSIX
 .B O_SYNC
 semantics, which require all metadata updates of a write
 to be on disk on returning to userspace, but only the
index da31679..4f1cd1d 100644 (file)
@@ -28,7 +28,7 @@
 .\" 2006-07-01, mtk, Added POLLRDHUP + various other wording and
 .\"    formatting changes.
 .\"
-.TH POLL 2 2009-09-15 "Linux" "Linux Programmer's Manual"
+.TH POLL 2 2010-06-12 "Linux" "Linux Programmer's Manual"
 .SH NAME
 poll, ppoll \- wait for some event on a file descriptor
 .SH SYNOPSIS
@@ -41,7 +41,7 @@ poll, ppoll \- wait for some event on a file descriptor
 .B #include <poll.h>
 .sp
 .BI "int ppoll(struct pollfd *" fds ", nfds_t " nfds ", "
-.BI "        const struct timespec *" timeout ", const sigset_t *" sigmask );
+.BI "        const struct timespec *" timeout_ts ", const sigset_t *" sigmask );
 .fi
 .SH DESCRIPTION
 .BR poll ()
@@ -186,14 +186,13 @@ like
 allows an application to safely wait until either a file descriptor
 becomes ready or until a signal is caught.
 .PP
-Other than the difference in the
-.I timeout
-argument, the following
+Other than the difference in the precision of the
+timeout argument, the following
 .BR ppoll ()
 call:
 .nf
 
-    ready = ppoll(&fds, nfds, timeout, &sigmask);
+    ready = ppoll(&fds, nfds, timeout_ts, &sigmask);
 
 .fi
 is equivalent to
@@ -202,7 +201,10 @@ executing the following calls:
 .nf
 
     sigset_t origmask;
+    int timeout;
 
+    timeout = (timeout_ts == NULL) ? -1 :
+              (timeout_ts.tv_sec * 1000 + timeout_ts.tv_nsec / 1000000);
     sigprocmask(SIG_SETMASK, &sigmask, &origmask);
     ready = poll(&fds, nfds, timeout);
     sigprocmask(SIG_SETMASK, &origmask, NULL);
@@ -222,12 +224,10 @@ no signal mask manipulation is performed
 .BR ppoll ()
 differs from
 .BR poll ()
-only in the precision of the
-.I timeout
-argument).
+only in the precision of the timeout argument).
 
 The
-.I timeout
+.I timeout_ts
 argument specifies an upper limit on the amount of time that
 .BR ppoll ()
 will block.
@@ -243,7 +243,7 @@ struct timespec {
 .in
 
 If
-.I timeout
+.I timeout_ts
 is specified as NULL, then
 .BR ppoll ()
 can block indefinitely.
@@ -304,13 +304,15 @@ is Linux-specific.
 Some implementations define the nonstandard constant
 .B INFTIM
 with the value \-1 for use as a
-.IR timeout .
+.IR timeout
+for
+.BR poll ()..
 This constant is not provided in glibc.
 .SS "Linux Notes"
 The Linux
 .BR ppoll ()
 system call modifies its
-.I timeout
+.I timeout_ts
 argument.
 However, the glibc wrapper function hides this behavior
 by using a local variable for the timeout argument that
@@ -318,7 +320,7 @@ is passed to the system call.
 Thus, the glibc
 .BR ppoll ()
 function does not modify its
-.I timeout
+.I timeout_ts
 argument.
 .SH BUGS
 See the discussion of spurious readiness notifications under the
index 838c1b9..1322380 100644 (file)
@@ -23,7 +23,7 @@
 .\"
 .\" 2005-04-08 mtk, noted kernel version and added BUGS
 .\"
-.TH POSIX_FADVISE 2 2003-02-14 "Linux" "Linux Programmer's Manual"
+.TH POSIX_FADVISE 2 2010-06-14 "Linux" "Linux Programmer's Manual"
 .SH NAME
 posix_fadvise \- predeclare an access pattern for file data
 .SH SYNOPSIS
@@ -141,6 +141,7 @@ was specified as 0, then this was interpreted literally as "zero bytes",
 rather than as meaning "all bytes through to the end of the file".
 .SH "SEE ALSO"
 .BR readahead (2),
+.BR sync_file_range (2),
 .BR posix_fallocate (3),
 .BR posix_madvise (3),
 .\" FIXME . Write a posix_fadvise(3) page.
index 469ae47..239b023 100644 (file)
@@ -37,8 +37,9 @@
 .\" 2008-06-13 Erik Bosman, <ejbosman@cs.vu.nl>
 .\"     Document PR_GET_TSC and PR_SET_TSC.
 .\" 2008-06-15 mtk, Document PR_SET_SECCOMP, PR_GET_SECCOMP
+.\" 2009-10-03 Andi Kleen, document PR_MCE_KILL_*
 .\"
-.TH PRCTL 2 2008-07-16 "Linux" "Linux Programmer's Manual"
+.TH PRCTL 2 2010-05-13 "Linux" "Linux Programmer's Manual"
 .SH NAME
 prctl \- operations on a process
 .SH SYNOPSIS
@@ -170,14 +171,20 @@ in the location pointed to by
 .TP
 .BR PR_SET_KEEPCAPS " (since Linux 2.2.18)"
 Set the state of the thread's "keep capabilities" flag,
-which determines whether the threads's effective and permitted
-capability sets are cleared when a change is made to the threads's user IDs
+which determines whether the threads's permitted
+capability set is cleared when a change is made to the threads's user IDs
 such that the threads's real UID, effective UID, and saved set-user-ID
 all become nonzero when at least one of them previously had the value 0.
-(By default, these credential sets are cleared).
+By default, the permitted capability set is cleared when such a change is made;
+setting the "keep capabilities" flag prevents it from being cleared.
 .I arg2
-must be either 0 (capabilities are cleared) or 1 (capabilities are kept).
-This value will be reset to 0 on subsequent calls to
+must be either 0 (permitted capabilities are cleared)
+or 1 (permitted capabilities are kept).
+(A thread's
+.I effective
+capability set is always cleared when such a credential change is made,
+regardless of the setting of the "keep capabilities" flag.)
+The "keep capabilities" value will be reset to 0 on subsequent calls to
 .BR execve (2).
 .TP
 .BR PR_GET_KEEPCAPS " (since Linux 2.2.18)"
@@ -318,6 +325,52 @@ on unaligned user access.
 for information on versions and architectures)
 Return unaligned access control bits, in the location pointed to by
 .IR "(int\ *) arg2" .
+.TP
+.BR PR_MCE_KILL " (since Linux 2.6.32)"
+Set the machine check memory corruption kill policy for the current thread.
+If
+.I arg2
+is
+.BR PR_MCE_KILL_CLEAR ,
+clear the thread memory corruption kill policy and use the system-wide default.
+(The system-wide default is defined by
+.IR /proc/sys/vm/memory_failure_early_kill ;
+see
+.BR proc (5).)
+If
+.I arg2
+is
+.BR PR_MCE_KILL_SET ,
+use a thread-specific memory corruption kill policy.
+In this case,
+.I arg3
+defines whether the policy is
+.I early kill
+.RB ( PR_MCE_KILL_EARLY ),
+.I late kill
+.RB ( PR_MCE_KILL_LATE ),
+or the system-wide default
+.RB ( PR_MCE_KILL_DEFAULT ).
+Early kill means that the task receives a
+.B SIGBUS
+signal as soon as hardware memory corruption is detected inside
+its address space.
+In late kill mode, the process is only killed when it accesses a corrupted page.
+See
+.I sigaction(2)
+for more information on the
+.BR SIGBUS
+signal.
+The policy is inherited by children.
+The remaining unused
+.BR prctl ()
+arguments must be zero for future compatibility.
+.TP
+.BR PR_MCE_KILL_GET " (since Linux 2.6.32)"
+Return the current per-process machine check kill policy.
+All unused
+.BR prctl ()
+arguments must be zero.
 .SH "RETURN VALUE"
 On success,
 .BR PR_GET_DUMPABLE ,
@@ -325,6 +378,7 @@ On success,
 .BR PR_CAPBSET_READ ,
 .BR PR_GET_TIMING ,
 .BR PR_GET_SECUREBITS ,
+.BR PR_MCE_KILL_GET ,
 and (if it returns)
 .BR PR_GET_SECCOMP
 return the nonnegative values described above.
@@ -346,6 +400,16 @@ The value of
 is not recognized.
 .TP
 .B EINVAL
+.I option
+is
+.BR PR_MCE_KILL
+or
+.BR PR_MCE_KILL_GET ,
+and unused
+.BR prctl ()
+arguments were not specified as zero.
+.TP
+.B EINVAL
 .I arg2
 is not valid value for this
 .IR option .
index 80a0114..d5b9e15 100644 (file)
@@ -65,7 +65,7 @@ indicates that nothing was written, in the case of
 .BR pwrite (),
 or
 end of file, in the case of
-.BR pread (),
+.BR pread ()),
 or \-1 on error, in which case
 .I errno
 is set to indicate the error.
index bb4d9cb..1023ba3 100644 (file)
-.\" Hey Emacs! This file is -*- nroff -*- source.
-.\"
-.\" Copyright (C) 1996 Andries Brouwer (aeb@cwi.nl)
+.\" Copyright (c) 2010, Jan Kara
+.\" A few pieces copyright (c) 1996 Andries Brouwer (aeb@cwi.nl)
+.\" and copyright 2010 (c) Michael Kerrisk <mtk.manpages@gmail.com>
 .\"
 .\" 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.
+.\" 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
+.\" 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
+.\" 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 There is much that is missing and/or out of date in this page.
-.\" (There is a quotactl.2 page in the quotactl package that seems to
-.\" have more info than this page.)
-.\" As things stand the page more or less documents Linux 2.2 reality:
-.\"
-.\" Linux 2.2 has:
-.\"
-.\"    Q_GETQUOTA
-.\"    Q_GETSTATS
-.\"    Q_QUOTAOFF
-.\"    Q_QUOTAON
-.\"    Q_RSQUASH (not currently documented)
-.\"    Q_SETQLIM
-.\"    Q_SETQUOTA
-.\"    Q_SETUSE
-.\"    Q_SYNC
-.\"
-.\" Linux 2.4 has:
-.\"
-.\"    Q_COMP_QUOTAOFF
-.\"    Q_COMP_QUOTAON
-.\"    Q_COMP_SYNC
-.\"    Q_GETFMT
-.\"    Q_GETINFO
-.\"    Q_GETQUOTA
-.\"    Q_QUOTAOFF
-.\"    Q_QUOTAON
-.\"    Q_SETINFO
-.\"    Q_SETQUOTA
-.\"    Q_SYNC
-.\"    Q_V1_GETQUOTA Q_V1_GETSTATS Q_V1_RSQUASH Q_V1_SETQLIM
-.\"    Q_V1_SETQUOTA Q_V1_SETUSE
-.\"    Q_V2_GETINFO Q_V2_GETQUOTA Q_V2_SETFLAGS Q_V2_SETGRACE
-.\"    Q_V2_SETINFO Q_V2_SETQUOTA Q_V2_SETUSE
-.\"    Q_XGETQSTAT Q_XGETQUOTA Q_XQUOTAOFF Q_XQUOTAON Q_XQUOTARM
-.\"    Q_XSETQLIM
-.\"
-.\" Linux 2.6.16 has:
-.\"
-.\"    Q_GETFMT
-.\"    Q_GETINFO
-.\"    Q_GETQUOTA
-.\"    Q_QUOTAOFF
-.\"    Q_QUOTAON
-.\"    Q_SETINFO
-.\"    Q_SETQUOTA
-.\"    Q_SYNC
-.\"    Q_XGETQSTAT
-.\"    Q_XGETQUOTA
-.\"    Q_XQUOTAOFF
-.\"    Q_XQUOTAON
-.\"    Q_XQUOTARM
-.\"    Q_XQUOTASYNC
-.\"    Q_XSETQLIM
-.\"
-.TH QUOTACTL 2 2007-06-01 "Linux" "Linux Programmer's Manual"
+.TH QUOTACTL 2 2010-06-16 "Linux" "Linux Programmer's Manual"
 .SH NAME
-quotactl \- manipulate disk quota
+quotactl \- manipulate disk quotas
 .SH SYNOPSIS
 .nf
-.B #include <sys/types.h>
-.br
 .B #include <sys/quota.h>
-.sp
+.B #include <xfs/xqm.h>
+.LP
 .BI "int quotactl(int " cmd ", const char *" special ", int " id \
 ", caddr_t " addr );
 .fi
 .SH DESCRIPTION
-The quota system defines for each user and/or group a soft limit
-and a hard limit bounding the amount of disk space that can be
-used on a given file system.
-The hard limit cannot be crossed.
-The soft limit can be crossed, but warnings will ensue.
-Moreover,
-the user cannot be above the soft limit for more than one week (by default)
-at a time: after this week the soft limit counts as hard limit.
+.LP
+The quota system can be used to set per-user and per-group limits on the
+amount of disk space used on a file system.
+For each user and/or group,
+a soft limit and a hard limit can be set for each file system.
+The hard limit can't be exceeded.
+The soft limit can be exceeded, but warnings will ensue.
+Moreover, the user can't exceed the soft limit for more than one week
+(by default) at a time;
+after this time, the soft limit counts as a hard limit.
 
 The
 .BR quotactl ()
-system call manipulates these quota.
-Its first argument is
-of the form
-.BI QCMD( subcmd , type )
-where
+call manipulates disk quotas.
+The
+.I cmd
+argument indicates a command to be applied to the user or
+group ID specified in
+.IR id .
+To initialize the
+.IR cmd
+argument, use the
+.IR "QCMD(subcmd, type)"
+macro.
+The
 .I type
-is either
-.B USRQUOTA
+value is either
+.BR USRQUOTA ,
+for user quotas,
 or
-.B GRPQUOTA
-(for user quota and group quota, respectively), and
+.BR GRPQUOTA ,
+for group quotas.
+The
 .I subcmd
-is described below.
+value is described below.
 
-The second argument
+The
 .I special
-is the block special device these quota apply to.
-It must be mounted.
+argument is a pointer to a null-terminated string containing the pathname
+of the (mounted) block special device for the file system being manipulated.
 
-The third argument
-.I id
-is the user or group ID these quota apply to (when relevant).
-
-The fourth argument
+The
 .I addr
-is the address of a data structure, depending on the command.
+argument is the address of an optional, command-specific, data structure
+that is copied in or out of the system.
+The interpretation of
+.I addr
+is given with each command below.
 
 The
 .I subcmd
-is one of
-.TP 1.1i
+value is one of the following:
+.TP 8
 .B Q_QUOTAON
-Enable quota.
+Turn on quotas for a file system.
 The
-.I addr
-argument is the pathname of the file containing
-the quota for the file system.
+.I id
+argument is the identification number of the quota format to be used.
+Currently, there are three supported quota formats:
+.RS
+.TP 13
+.BR QFMT_VFS_OLD
+The original quota format.
+.TP
+.BR QFMT_VFS_V0
+The standard VFS v0 quota format, which can handle 32-bit UIDs and GIDs
+and quota limits up to 2^42 bytes and 2^32 inodes.
 .TP
+.BR QFMT_VFS_V1
+A quota format that can handle 32-bit UIDs and GIDs
+and quota limits of 2^64 bytes and 2^64 inodes.
+.RE
+.IP
+The
+.IR addr
+argument points to the pathname of a file containing the quotas for
+the file system.
+The quota file must exist; it is normally created with the
+.BR quotacheck (8)
+program.
+This operation requires privilege
+.RB ( CAP_SYS_ADMIN ).
+.TP 8
 .B Q_QUOTAOFF
-Disable quota.
+Turn off quotas for a file system.
+The
+.I addr
+and
+.I id
+arguments are ignored.
+This operation requires privilege
+.RB ( CAP_SYS_ADMIN ).
 .TP
 .B Q_GETQUOTA
-Get limits and current usage of disk space.
+Get disk quota limits and current usage for user or group
+.IR id .
 The
 .I addr
-argument is a pointer to a dqblk structure (defined in
-.IR <sys/quota.h> ).
+argument is a pointer to a
+.I dqblk
+structure defined in
+.IR <sys/quota.h>
+as follows:
+.in +4n
+.nf
+
+/* uint64_t is an unsigned 64-bit integer;
+   uint32_t is an unsigned 32-bit integer */
+
+struct dqblk {          /* Definition since Linux 2.4.22 */
+    uint64_t dqb_bhardlimit;   /* absolute limit on disk
+                                  quota blocks alloc */
+    uint64_t dqb_bsoftlimit;   /* preferred limit on
+                                  disk quota blocks */
+    uint64_t dqb_curspace;     /* current quota block
+                                  count */
+    uint64_t dqb_ihardlimit;   /* maximum number of
+                                  allocated inodes */
+    uint64_t dqb_isoftlimit;   /* preferred inode limit */
+    uint64_t dqb_curinodes;    /* current number of
+                                  allocated inodes */
+    uint64_t dqb_btime;        /* time limit for excessive
+                                  disk use */
+    uint64_t dqb_itime;        /* time limit for excessive
+                                  files */
+    uint32_t dqb_valid;        /* bit mask of QIF_*
+                                  constants */
+};
+
+/* Flags in dqb_valid that indicate which fields in
+   dqblk structure are valid. */
+
+#define QIF_BLIMITS   1
+#define QIF_SPACE     2
+#define QIF_ILIMITS   4
+#define QIF_INODES    8
+#define QIF_BTIME     16
+#define QIF_ITIME     32
+#define QIF_LIMITS    (QIF_BLIMITS | QIF_ILIMITS)
+#define QIF_USAGE     (QIF_SPACE | QIF_INODES)
+#define QIF_TIMES     (QIF_BTIME | QIF_ITIME)
+#define QIF_ALL       (QIF_LIMITS | QIF_USAGE | QIF_TIMES)
+
+.fi
+.in
+The
+.I dqb_valid
+field is a bit mask that is set to indicate the entries in the
+.I dqblk
+structure that are valid.
+Currently, the kernel fills in all entries of the
+.I dqblk
+structure and marks them as valid in the
+.I dqb_valid
+field.
+Unprivileged users may retrieve only their own quotas;
+a privileged user
+.RB ( CAP_SYS_ADMIN )
+can retrieve the quotas of any user.
 .TP
 .B Q_SETQUOTA
-Set limits and current usage;
+Set quota information for user or group
+.IR id ,
+using the information supplied in the
+.I dqblk
+structure pointed to by
+.IR addr .
+The
+.I dqb_valid
+field of the
+.I dqblk
+structure indicates which entries in the structure have been set by the caller.
+This operation supersedes the
+.B Q_SETQLIM
+and
+.B Q_SETUSE
+operations in the previous quota interfaces.
+This operation requires privilege
+.RB ( CAP_SYS_ADMIN ).
+.TP
+.B Q_GETINFO
+Get information (like grace times) about quotafile.
+The
 .I addr
-is as before.
+argument should be a pointer to a
+.I dqinfo
+structure.
+This structure is defined in
+.IR <sys/quota.h>
+as follows:
+.in +4n
+.nf
+
+/* uint64_t is an unsigned 64-bit integer;
+   uint32_t is an unsigned 32-bit integer */
+
+struct dqinfo {         /* Defined since kernel 2.4.22 */
+    uint64_t dqi_bgrace;    /* Time before block soft limit
+                               becomes hard limit */
+
+    uint64_t dqi_igrace;    /* Time before inode soft limit
+                               becomes hard limit */
+    uint32_t dqi_flags;     /* Flags for quotafile
+                               (DQF_*) */
+    uint32_t dqi_valid;
+};
+
+/* Bits for dqi_flags */
+
+/* Quota format QFMT_VFS_OLD */
+
+#define V1_DQF_RSQUASH 1   /* Root squash enabled */
+
+/* Other quota formats have no dqi_flags bits defined */
+
+/* Flags in dqi_valid that indicate which fields in
+   dqinfo structure are valid. */
+
+# define IIF_BGRACE    1
+# define IIF_IGRACE    2
+# define IIF_FLAGS     4
+# define IIF_ALL       (IIF_BGRACE | IIF_IGRACE | IIF_FLAGS)
+
+.fi
+.in
+The
+.I dqi_valid
+field in the
+.I dqinfo
+structure indicates the entries in the structure that are valid.
+Currently, the kernel fills in all entries of the
+.I dqinfo
+structure and marks them all as valid in the
+.I dqi_valid
+field.
+The
+.I id
+argument is ignored.
 .TP
-.B Q_SETQLIM
-Set limits;
+.B Q_SETINFO
+Set information about quotafile.
+The
 .I addr
-is as before.
+argument should be a pointer to a
+.I dqinfo
+structure.
+The
+.I dqi_valid
+field of the
+.I dqinfo
+structure indicates the entries in the structure
+that have been set by the caller.
+This operation supersedes the
+.B Q_SETGRACE
+and
+.B Q_SETFLAGS
+operations in the previous quota interfaces.
+The
+.I id
+argument is ignored.
+This operation requires privilege
+.RB ( CAP_SYS_ADMIN ).
 .TP
-.B Q_SETUSE
-Set usage.
+.B Q_GETFMT
+Get quota format used on the specified file system.
+The
+.I addr
+argument should be a pointer to a 4-byte buffer
+where the format number will be stored.
 .TP
 .B Q_SYNC
-Sync disk copy of a file system's quota.
+Update the on-disk copy of quota usages for a file system.
+If
+.I special
+is NULL, then all file systems with active quotas are sync'ed.
+The
+.I addr
+and
+.I id
+arguments are ignored.
 .TP
 .B Q_GETSTATS
-Get collected stats.
-.SH "RETURN VALUE"
+Get statistics and other generic information about the quota subsystem.
+The
+.I addr
+argument should be a pointer to a
+.I dqstats
+structure in which data should be stored.
+This structure is defined in
+.IR <sys/quota.h>.
+The
+.I special
+and
+.I id
+arguments are ignored.
+This operation is obsolete and not supported by recent kernels.
+.\" Q_GETSTATS was removed in kernel 2.4.22.
+Files in
+.I /proc/sys/fs/quota/
+carry the information instead.
+.PP
+For XFS file systems making use of the XFS Quota Manager (XQM),
+the above commands are bypassed and the following commands are used:
+.TP 8
+.B Q_XQUOTAON
+Turn on quotas for an XFS file system.
+XFS provides the ability to turn on/off quota limit enforcement
+with quota accounting.
+Therefore, XFS expects
+.I addr
+to be a pointer to an
+.I "unsigned int"
+that contains either the flags
+.B XFS_QUOTA_UDQ_ACCT
+and/or
+.B XFS_QUOTA_UDQ_ENFD
+(for user quota), or
+.B XFS_QUOTA_GDQ_ACCT
+and/or
+.B XFS_QUOTA_GDQ_ENFD
+(for group quota), as defined in
+.IR <xfs/xqm.h> .
+This operation requires privilege
+.RB ( CAP_SYS_ADMIN ).
+.TP
+.B Q_XQUOTAOFF
+Turn off quotas for an XFS file system.
+As with
+.BR Q_QUOTAON ,
+XFS file systems expect a pointer to an
+.I "unsigned int"
+that specifies whether quota accounting and/or limit enforcement need
+to be turned off.
+This operation requires privilege
+.RB ( CAP_SYS_ADMIN ).
+.TP
+.B Q_XGETQUOTA
+Get disk quota limits and current usage for user
+.IR id .
+The
+.I addr
+argument is a pointer to an
+.I fs_disk_quota
+structure (defined in
+.IR <xfs/xqm.h> ).
+Unprivileged users may retrieve only their own quotas;
+a privileged user
+.RB ( CAP_SYS_ADMIN )
+may retrieve the quotas of any user.
+.TP
+.B Q_XSETQLIM
+Set disk quota limits for user
+.IR id .
+The
+.I addr
+argument is a pointer to an
+.I fs_disk_quota
+structure (defined in
+.IR <xfs/xqm.h> ).
+This operation requires privilege
+.RB ( CAP_SYS_ADMIN ).
+.TP
+.B Q_XGETQSTAT
+Returns an
+.I fs_quota_stat
+structure containing XFS file system specific quota information.
+This is useful for finding out how much space is used to store quota
+information, and also to get quotaon/off status of a given local XFS
+file system.
+.TP
+.B Q_XQUOTARM
+Free the disk space taken by disk quotas.
+Quotas must have already been turned off.
+.PP
+There is no command equivalent to
+.B Q_SYNC
+for XFS since
+.BR sync (1)
+writes quota information to disk (in addition to the other file system
+metadata that it writes out).
+.SH RETURN VALUES
+.LP
 On success,
 .BR quotactl ()
-returns 0.
-On error, \-1 is returned, and
+returns 0; on error \-1
+is returned, and
 .I errno
-is set appropriately.
+is set to indicate the error.
 .SH ERRORS
-.TP 0.9i
-.B EACCES
-The quota file is not an ordinary file.
-.TP
-.B EBUSY
-.B Q_QUOTAON
-was asked, but quotas were enabled already.
 .TP
 .B EFAULT
-Bad
 .I addr
-value.
+or
+.I special
+is invalid.
 .TP
 .B EINVAL
+.I cmd
+or
 .I type
-is not a known quota type.
-Or,
-.I special
-could not be found.
+is invalid.
 .TP
-.B EIO
-Cannot read or write the quota file.
-.TP
-.B EMFILE
-Too many open files: cannot open quota file.
-.TP
-.B ENODEV
+.B ENOENT
+The file specified by
 .I special
-cannot be found in the mount table.
+or
+.I addr
+does not exist.
 .TP
-.B ENOPKG
-The kernel was compiled without quota support.
+.B ENOSYS
+The kernel has not been compiled with the
+.B CONFIG_QUOTA
+option.
 .TP
 .B ENOTBLK
 .I special
-is not a block special device.
+is not a block device.
 .TP
 .B EPERM
-The process was not root (for the file system), and
-.B Q_GETQUOTA
-was asked for another
-.I id
-than that of the process itself, or anything other than
-.B Q_GETSTATS
-or
-.B Q_SYNC
-was asked.
+The caller lacked the required privilege
+.RB ( CAP_SYS_ADMIN )
+for the specified operation.
 .TP
 .B ESRCH
-.B Q_GETQUOTA
-or
-.B Q_SETQUOTA
-or
-.B Q_SETUSE
-or
-.B Q_SETQLIM
-was asked for a file system that didn't have quota enabled.
-.SH "CONFORMING TO"
-BSD.
+No disk quota is found for the indicated user.
+Quotas have not been turned on for this file system.
+.LP
+If
+.I cmd
+is
+.BR Q_SETQUOTA ,
+.BR quotactl ()
+may also set
+.I errno
+to:
+.TP
+.B ERANGE
+Specified limits are out of range allowed by quota format.
+.LP
+If
+.I cmd
+is
+.BR Q_QUOTAON ,
+.BR quotactl ()
+may also set
+.I errno
+to:
+.TP
+.B EACCES
+The quota file pointed to by
+.I addr
+exists, but is not a regular file; or,
+the quota file pointed to by
+.I addr
+exists, but is not on the file system pointed to by
+.IR special .
+.TP
+.B EBUSY
+.B Q_QUOTAON
+attempted, but another
+.B Q_QUOTAON
+had already been performed.
+.TP
+.B EINVAL
+The quota file is corrupted.
+.TP
+.B ESRCH
+Specified quota format was not found.
 .SH "SEE ALSO"
 .BR quota (1),
 .BR getrlimit (2),
-.BR setrlimit (2),
-.BR ulimit (3),
 .BR quotacheck (8),
 .BR quotaon (8)
index cce9d6a..9431b5c 100644 (file)
@@ -355,8 +355,8 @@ struct cmsghdr {
 Ancillary data should only be accessed by the macros defined in
 .BR cmsg (3).
 .PP
-As an example, Linux uses this auxiliary data mechanism to pass extended
-errors, IP options or file descriptors over Unix sockets.
+As an example, Linux uses this ancillary data mechanism to pass extended
+errors, IP options, or file descriptors over Unix sockets.
 .PP
 The
 .I msg_flags
index 8cdb8f6..6f54307 100644 (file)
 .\"     added to the mainline kernel.
 .\" 2008-05-07, mtk; Rewrote and restructured various parts of the page to
 .\"     improve readability.
+.\" 2010-06-19, mtk, documented SCHED_RESET_ON_FORK
 .\"
 .\" Worth looking at: http://rt.wiki.kernel.org/index.php
 .\"
-.\" FIXME: 2.6.32 added SCHED_RESET_ON_FORK
-.\"
-.TH SCHED_SETSCHEDULER 2 2008-11-06 "Linux" "Linux Programmer's Manual"
+.TH SCHED_SETSCHEDULER 2 2010-06-19 "Linux" "Linux Programmer's Manual"
 .SH NAME
 sched_setscheduler, sched_getscheduler \-
 set and get scheduling policy/parameters
@@ -265,6 +264,53 @@ or
 .B SCHED_BATCH
 policies).
 .\"
+.SS Resetting scheduling policy for child processes
+Since Linux 2.6.32, the
+.B SCHED_RESET_ON_FORK
+flag can be ORed in
+.I policy
+when calling
+.BR sched_setscheduler ().
+As a result of including this flag, children created by
+.BR fork (2)
+do not inherit privileged scheduling policies.
+This feature is intended for media-playback applications,
+and can be used to prevent applications evading the
+.BR RLIMIT_RTTIME
+resource limit (see
+.BR getrlimit (2))
+by creating multiple child processes.
+
+More precisely, if the
+.BR SCHED_RESET_ON_FORK
+flag is specified,
+the following rules apply for subsequently created children:
+.IP * 3
+If the calling process has a scheduling policy of
+.B SCHED_FIFO
+or
+.BR SCHED_RR ,
+the policy is reset to
+.BR SCHED_OTHER
+in child processes.
+.IP *
+If the calling processes has a negative nuce value,
+the nice value is reset to zero in child processes.
+.PP
+After the
+.BR SCHED_RESET_ON_FORK
+flag has been enabled,
+it can only be reset if the process has the
+.BR CAP_SYS_NICE
+capability.
+This flag is disabled in child processes created by
+.BR fork (2).
+
+The
+.B SCHED_RESET_ON_FORK
+flag is visible in the policy value returned by
+.BR sched_getscheduler ()
+.\"
 .SS Privileges and resource limits
 In Linux kernels before 2.6.12, only privileged
 .RB ( CAP_SYS_NICE )
@@ -288,7 +334,7 @@ and
 .B SCHED_FIFO
 policies.
 The rules for changing scheduling policy and priority are as follows:
-.IP * 2
+.IP * 3
 If an unprivileged process has a nonzero
 .B RLIMIT_RTPRIO
 soft limit, then it can change its scheduling policy and priority,
index e6527e3..1bba6b3 100644 (file)
@@ -163,7 +163,7 @@ is an upper bound on the amount of time elapsed before
 returns.
 If both fields of the
 .I timeval
-stucture are zero, then
+structure are zero, then
 .BR select ()
 returns immediately.
 (This is useful for polling.)
index d7bcab5..cf5319a 100644 (file)
@@ -27,7 +27,7 @@
 .\"             various other changes
 .\" 2008-01-26, mtk, substantial changes and rewrites
 .\"
-.TH SELECT_TUT 2 2009-01-26 "Linux" "Linux Programmer's Manual"
+.TH SELECT_TUT 2 2010-06-10 "Linux" "Linux Programmer's Manual"
 .SH NAME
 select, pselect, FD_CLR, FD_ISSET, FD_SET, FD_ZERO \-
 synchronous I/O multiplexing
@@ -736,7 +736,7 @@ main(int argc, char *argv[])
 
                 r = recv(fd2, &c, 1, MSG_OOB);
                 if (r < 1)
-                    SHUT_FD1;
+                    SHUT_FD2;
                 else
                     send(fd1, &c, 1, MSG_OOB);
             }
index fba8d7d..457a395 100644 (file)
@@ -467,7 +467,7 @@ The
 and
 .B SEM_INFO
 operations are used by the
-.BR ipcs (8)
+.BR ipcs (1)
 program to provide information on allocated resources.
 In the future these may modified or moved to a /proc file system
 interface.
index 1417c01..5ddb429 100644 (file)
@@ -56,9 +56,8 @@ is returned, and
 is set to indicate the error.
 .SH ERRORS
 .TP
-.BR EPERM .
-The process group ID of any process
-equals the PID of the calling process.
+.B EPERM
+The process group ID of any process equals the PID of the calling process.
 Thus, in particular,
 .BR setsid ()
 fails if the calling process is already a process group leader.
index d893947..5552bd3 100644 (file)
@@ -375,7 +375,7 @@ The
 and
 .B SHM_INFO
 operations are used by the
-.BR ipcs (8)
+.BR ipcs (1)
 program to provide information on allocated resources.
 In the future these may modified or moved to a /proc file system
 interface.
index 18510ae..564c3a0 100644 (file)
 .\" 2004-12-09, mtk, added SI_TKILL + other minor changes
 .\" 2005-09-15, mtk, split sigpending(), sigprocmask(), sigsuspend()
 .\"    out of this page into separate pages.
+.\" 2010-06-11 Andi Kleen, add hwpoison signal extensions
+.\" 2010-06-11 mtk, improvements to discussion of various siginfo_t fields.
 .\"
-.TH SIGACTION 2 2009-07-25 "Linux" "Linux Programmer's Manual"
+.TH SIGACTION 2 2010-06-16 "Linux" "Linux Programmer's Manual"
 .SH NAME
 sigaction \- examine and change a signal action
 .SH SYNOPSIS
@@ -173,7 +175,7 @@ or resume (i.e., they receive
 This flag is only meaningful when establishing a handler for
 .BR SIGCHLD .
 .TP
-.BR SA_NOCLDWAIT " (Since Linux 2.6)"
+.BR SA_NOCLDWAIT " (since Linux 2.6)"
 .\" To be precise: Linux 2.5.60 -- MTK
 If
 .I signum
@@ -269,8 +271,11 @@ siginfo_t {
     int      si_timerid;  /* Timer ID; POSIX.1b timers */
 .\" In the kernel: si_tid
     void    *si_addr;     /* Memory location which caused fault */
-    int      si_band;     /* Band event */
+    long     si_band;     /* Band event (was \fIint\fP in
+                             glibc 2.3.2 and earlier) */
     int      si_fd;       /* File descriptor */
+    short    si_addr_lsb; /* Least significant bit of address
+                             (since kernel 2.6.32) */
 }
 .fi
 .in
@@ -282,12 +287,22 @@ is generally unused on Linux.)
 The rest of the struct may be a union, so that one should only
 read the fields that are meaningful for the given signal:
 .IP * 2
-POSIX.1b signals and
-.B SIGCHLD
+Signals sent with
+.BR kill (2)
+and
+.BR sigqueue (2)
 fill in
 .IR si_pid " and " si_uid .
+In addition, signals sent with
+.BR sigqueue (2)
+fill in
+.IR si_int " and " si_ptr
+with the values specified by the sender the signal;
+see
+.BR sigqueue (2)
+for more details.
 .IP *
-POSIX.1b timers (since Linux 2.6) fill in
+Signals sent by POSIX.1b timers (since Linux 2.6) fill in
 .I si_overrun
 and
 .IR si_timerid .
@@ -296,15 +311,50 @@ The
 field is an internal ID used by the kernel to identify
 the timer; it is not the same as the timer ID returned by
 .BR timer_create (2).
+The
+.I si_overrun
+field is the timer overrun count;
+this is the same information as is obtained by a call to
+.BR timer_getoverrun (2).
+These fields are nonstandard Linux extensions.
+.IP *
+Signals sent for message queue notification (see the description of
+.B SIGEV_SIGNAL
+in
+.BR mq_notify (3))
+fill in
+.IR si_int / si_ptr ,
+with the
+.I sigev_value
+supplied to
+.BR mq_notify (3);
+.IR si_pid ,
+with the process ID of the message sender; and
+.IR si_uid ,
+with the real user ID of the message sender.
 .IP *
 .B SIGCHLD
 fills in
-.IR si_status ", " si_utime " and " si_stime .
+.IR si_pid ", " si_uid ", " si_status ", " si_utime " and " si_stime ,
+providing information about the child.
+The
+.I si_pid
+field is the process ID of the child;
+.I si_uid
+is the child's real user ID.
+The
+.I si_status
+field contains the exit status of the child (if
+.I si_code
+is
+.BR CLD_EXITED ),
+or the signal number that caused the process to change state.
 The
 .I si_utime
 and
 .I si_stime
-fields do not include the times used by waited-for children (unlike
+contain the user and system CPU time used by the child process;
+these fields do not include the times used by waited-for children (unlike
 .BR getrusage (2)
 and
 .BR time (2)).
@@ -315,7 +365,7 @@ In 2.6 kernels before 2.6.27,
 a bug meant that these fields reported time in units
 of the (configurable) system jiffy (see
 .BR time (7)).
-\" FIXME .
+.\" FIXME .
 .\" When si_utime and si_stime where originally implemented, the
 .\" measurement unit was HZ, which was the same as clock ticks
 .\" (sysconf(_SC_CLK_TCK)).  In 2.6, HZ became configurable, and
@@ -330,23 +380,54 @@ of the (configurable) system jiffy (see
 .\" waited-for children (as is done by getrusage() and times()
 .\" and wait4()).  Solaris 8 does include child times.
 .IP *
-.IR si_int " and " si_ptr
-are specified by the sender of the POSIX.1b signal.
-See
-.BR sigqueue (2)
-for more details.
-.IP *
 .BR SIGILL ,
 .BR SIGFPE ,
 .BR SIGSEGV ,
+.BR SIGBUS ,
 and
-.B SIGBUS
+.BR SIGTRAP
 fill in
 .I si_addr
 with the address of the fault.
-.B SIGPOLL
+.\" FIXME SIGTRAP also sets the following for ptrace_notify() ?
+.\"     info.si_code = exit_code;
+.\"     info.si_pid = task_pid_vnr(current);
+.\"     info.si_uid = current_uid();  /* Real UID */
+On some architectures,
+these signals also fill in the
+.I si_trapno
+filed.
+Some suberrors of
+.BR SIGBUS ,
+in particular
+.B BUS_MCEERR_AO
+and
+.BR BUS_MCEERR_AR ,
+also fill in
+.IR si_addr_lsb .
+This field indicates the least significant bit of the reported address
+and therefore the extent of the corruption.
+For example, if a full page was corrupted,
+.I si_addr_lsb
+contains
+.IR log2(sysconf(_SC_PAGESIZE)) .
+.B BUS_MCERR_*
+and
+.I si_addr_lsb
+are Linux-specific extensions.
+.IP *
+.BR SIGPOLL / SIGIO
 fills in
 .IR si_band " and " si_fd .
+The
+.I si_band
+event is a bit mask containing the same values as are filled in the
+.I revents
+field by
+.BR poll (2).
+The
+.I si_fd
+field indicates the file descriptor for which the I/O event occurred.
 .PP
 .I si_code
 is a value (not a bit mask)
@@ -483,6 +564,12 @@ nonexistent physical address
 .TP
 .B BUS_OBJERR
 object-specific hardware error
+.TP
+.BR BUS_MCEERR_AR " (since Linux 2.6.32)"
+Hardware memory error consumed on a machine check; action required.
+.TP
+.BR BUS_MCEERR_AO " (since Linux 2.6.32)"
+Hardware memory error detected in process but not consumed; action optional.
 .RE
 .PP
 The following values can be placed in
@@ -497,6 +584,12 @@ process breakpoint
 .TP
 .B TRAP_TRACE
 process trace trap
+.TP
+.BR TRAP_BRANCH " (since Linux 2.4)"
+process taken branch trap
+.TP
+.BR TRAP_HWBKPT " (since Linux 2.4)"
+hardware breakpoint/watchpoint
 .RE
 .PP
 The following values can be placed in
@@ -542,7 +635,7 @@ output buffers available
 input message available
 .TP
 .B POLL_ERR
-i/o error
+I/O error
 .TP
 .B POLL_PRI
 high priority input available
index db5732e..d6e0233 100644 (file)
@@ -119,7 +119,7 @@ or
 .B SIGSEGV
 are generated
 while they are blocked, the result is undefined,
-unless the signal was generated by the
+unless the signal was generated by
 .BR kill (2),
 .BR sigqueue (2),
 or
index 73ec57f..ea2f085 100644 (file)
@@ -23,7 +23,7 @@
 .\" Modified 2003-08-17 by Walter Harms
 .\" Modified 2004-06-23 by Michael Kerrisk <mtk.manpages@gmail.com>
 .\"
-.TH STATFS 2 2004-06-23 "Linux" "Linux Programmer's Manual"
+.TH STATFS 2 2010-06-13 "Linux" "Linux Programmer's Manual"
 .SH NAME
 statfs, fstatfs \- get file system statistics
 .SH SYNOPSIS
@@ -45,16 +45,25 @@ structure defined approximately as follows:
 
 .in +4n
 .nf
+#if __WORDSIZE == 32           /* System word size */
+# define __UWORD_TYPE          unsigned int
+#else /* __WORDSIZE == 64 */
+# define __SWORD_TYPE          long int
+#endif
+
 struct statfs {
-   long    f_type;     /* type of file system (see below) */
-   long    f_bsize;    /* optimal transfer block size */
-   long    f_blocks;   /* total data blocks in file system */
-   long    f_bfree;    /* free blocks in fs */
-   long    f_bavail;   /* free blocks avail to unprivileged user */
-   long    f_files;    /* total file nodes in file system */
-   long    f_ffree;    /* free file nodes in fs */
-   fsid_t  f_fsid;     /* file system id */
-   long    f_namelen;  /* maximum length of filenames */
+    __SWORD_TYPE f_type;    /* type of file system (see below) */
+    __SWORD_TYPE f_bsize;   /* optimal transfer block size */
+    fsblkcnt_t   f_blocks;  /* total data blocks in file system */
+    fsblkcnt_t   f_bfree;   /* free blocks in fs */
+    fsblkcnt_t   f_bavail;  /* free blocks available to
+                               unprivileged user */
+    fsfilcnt_t   f_files;   /* total file nodes in file system */
+    fsfilcnt_t   f_ffree;   /* free file nodes in fs */
+    fsid_t       f_fsid;    /* file system id */
+    __SWORD_TYPE f_namelen; /* maximum length of filenames */
+    __SWORD_TYPE f_frsize;  /* fragment size (since Linux 2.6) */
+    __SWORD_TYPE f_spare[5];
 };
 
 File system types:
@@ -73,6 +82,7 @@ File system types:
    EXT2_OLD_SUPER_MAGIC  0xEF51
    EXT2_SUPER_MAGIC      0xEF53
    EXT3_SUPER_MAGIC      0xEF53
+   EXT4_SUPER_MAGIC      0xEF53
    HFS_SUPER_MAGIC       0x4244
    HPFS_SUPER_MAGIC      0xF995E849
    HUGETLBFS_MAGIC       0x958458f6
@@ -235,7 +245,7 @@ The general idea is that
 contains some random stuff such that the pair
 .RI ( f_fsid , ino )
 uniquely determines a file.
-Some OSes use (a variation on) the device number, or the device number
+Some operating systems use (a variation on) the device number, or the device number
 combined with the file-system type.
 Several OSes restrict giving out the
 .I f_fsid
index 6530779..adec9dd 100644 (file)
@@ -1,180 +1 @@
-.\" Copyright (C) 2003 Andries Brouwer (aeb@cwi.nl)
-.\"
-.\" 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.
-.\"
-.\" The pathconf note is from Walter Harms
-.\" This is not a system call on Linux
-.\"
-.\" Modified 2004-06-23 by Michael Kerrisk <mtk.manpages@gmail.com>
-.\"
-.TH STATVFS 2 2003-08-22 "Linux" "Linux Programmer's Manual"
-.SH NAME
-statvfs, fstatvfs \- get file system statistics
-.SH SYNOPSIS
-.B #include <sys/statvfs.h>
-.sp
-.BI "int statvfs(const char *" path ", struct statvfs *" buf );
-.br
-.BI "int fstatvfs(int " fd ", struct statvfs *" buf );
-.SH DESCRIPTION
-The function
-.BR statvfs ()
-returns information about a mounted file system.
-.I path
-is the pathname of any file within the mounted file system.
-.I buf
-is a pointer to a
-.I statvfs
-structure defined approximately as follows:
-
-.in +4n
-.nf
-struct statvfs {
-    unsigned long  f_bsize;    /* file system block size */
-    unsigned long  f_frsize;   /* fragment size */
-    fsblkcnt_t     f_blocks;   /* size of fs in f_frsize units */
-    fsblkcnt_t     f_bfree;    /* # free blocks */
-    fsblkcnt_t     f_bavail;   /* # free blocks for unprivileged users */
-    fsfilcnt_t     f_files;    /* # inodes */
-    fsfilcnt_t     f_ffree;    /* # free inodes */
-    fsfilcnt_t     f_favail;   /* # free inodes for unprivileged users */
-    unsigned long  f_fsid;     /* file system ID */
-    unsigned long  f_flag;     /* mount flags */
-    unsigned long  f_namemax;  /* maximum filename length */
-};
-.fi
-.in
-
-Here the types
-.I fsblkcnt_t
-and
-.I fsfilcnt_t
-are defined in
-.IR <sys/types.h> .
-Both used to be
-.IR "unsigned long" .
-
-The field
-.I f_flag
-is a bit mask (of mount flags, see
-.BR mount (8)).
-Bits defined by POSIX are
-.TP
-.B ST_RDONLY
-Read-only file system.
-.TP
-.B ST_NOSUID
-Set-user-ID/set-group-ID bits are ignored by
-.BR exec (3).
-.LP
-It is unspecified whether all members of the returned struct
-have meaningful values on all file systems.
-
-.BR fstatvfs ()
-returns the same information about an open file referenced by descriptor
-.IR fd .
-.SH "RETURN VALUE"
-On success, zero is returned.
-On error, \-1 is returned, and
-.I errno
-is set appropriately.
-.SH ERRORS
-.TP
-.B EACCES
-.RB ( statvfs ())
-Search permission is denied for a component of the path prefix of
-.IR path .
-(See also
-.BR path_resolution (7).)
-.TP
-.B EBADF
-.RB ( fstatvfs ())
-.I fd
-is not a valid open file descriptor.
-.TP
-.B EFAULT
-.I Buf
-or
-.I path
-points to an invalid address.
-.TP
-.B EINTR
-This call was interrupted by a signal.
-.TP
-.B EIO
-An I/O error occurred while reading from the file system.
-.TP
-.B ELOOP
-.RB ( statvfs ())
-Too many symbolic links were encountered in translating
-.IR path .
-.TP
-.B ENAMETOOLONG
-.RB ( statvfs ())
-.I path
-is too long.
-.TP
-.B ENOENT
-.RB ( statvfs ())
-The file referred to by
-.I path
-does not exist.
-.TP
-.B ENOMEM
-Insufficient kernel memory was available.
-.TP
-.B ENOSYS
-The file system does not support this call.
-.TP
-.B ENOTDIR
-.RB ( statvfs ())
-A component of the path prefix of
-.I path
-is not a directory.
-.TP
-.B EOVERFLOW
-Some values were too large to be represented in the returned struct.
-.SH "CONFORMING TO"
-POSIX.1-2001.
-.SH NOTES
-The Linux kernel has system calls
-.BR statfs (2)
-and
-.BR fstatfs (2)
-to support this library call.
-
-The current glibc implementations of
-.sp
-.nf
-   pathconf(path, _PC_REC_XFER_ALIGN);
-   pathconf(path, _PC_ALLOC_SIZE_MIN);
-   pathconf(path, _PC_REC_MIN_XFER_SIZE);
-.fi
-.sp
-respectively use the
-.IR f_frsize ,
-.IR f_frsize ,
-and
-.I f_bsize
-fields of the return value of
-.IR "statvfs(path,buf)" .
-.SH "SEE ALSO"
-.BR statfs (2)
+.so man3/statvfs.3
index 63d1c9b..656139c 100644 (file)
@@ -34,7 +34,7 @@
 .\" 2007-06-22 Ivana Varekova <varekova@redhat.com>, mtk
 .\"     Update text describing limit on number of swap files.
 .\"
-.TH SWAPON 2 2007-06-22 "Linux" "Linux Programmer's Manual"
+.TH SWAPON 2 2010-06-15 "Linux" "Linux Programmer's Manual"
 .SH NAME
 swapon, swapoff \- start/stop swapping to file/device
 .SH SYNOPSIS
@@ -165,6 +165,10 @@ option
 .BR mbind (2)
 and
 .BR migrate_pages (2)).
+Since kernel 2.6.32, the limit is further decreased by 1
+if the kernel is built with the
+.B CONFIG_MEMORY_FAILURE
+option.
 .SH "SEE ALSO"
 .BR mkswap (8),
 .BR swapoff (8),
index cb0fee1..afca9c2 100644 (file)
@@ -88,11 +88,11 @@ Therefore, unless the application is strictly performing overwrites of
 already-instantiated disk blocks, there are no guarantees that the data will
 be available after a crash.
 There is no user interface to know if a write is purely an overwrite.
-On filesystem using copy-on-write semantics (e.g.,
+On file systems using copy-on-write semantics (e.g.,
 .IR btrfs )
 an overwrite of existing allocated blocks is impossible.
 When writing into preallocated space,
-many filesystems also require calls into the block
+many file systems also require calls into the block
 allocator, which this system call does not sync out to disk.
 This system call does not flush disk write caches and thus does not provide
 any data integrity on systems with volatile disk write caches.
index c6e1ccc..9a5d3b6 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 2009-05-06 "Linux" "Linux Programmer's Manual"
+.TH SYSCALLS 2 2010-03-06 "Linux" "Linux Programmer's Manual"
 .SH NAME
 syscalls \- Linux system calls
 .SH SYNOPSIS
@@ -139,7 +139,7 @@ into a 2.4.x release after 2.4.15.
 When this is so, the version where the system call appeared
 in both of the major kernel series is listed.
 .PP
-The list of system calls that are available as at kernel 2.6.28
+The list of system calls that are available as at kernel 2.6.33
 (or in a few cases only on older kernels) is as follows:
 .\"
 .\" Looking at scripts/checksyscalls.sh in the kernel source is
@@ -364,6 +364,8 @@ l l l.
 .\" , PowerPC, ARM; not i386
 \fBpciconfig_write\fP(2)       2.0.26; 2.2     Not on i386
 .\" , PowerPC, ARM; not i386
+\fBperf_event_open\fP(2)       2.6.31  Was called perf_counter_open()
+               in 2.6.31; renamed in 2.6.32
 \fBpersonality\fP(2)   1.2
 .\" \fBperfctr\fP(2)   ???     Sparc32, Sparc64
 .\" \fBperfmonctl\fP(2)        ???     ia64
@@ -402,6 +404,7 @@ l l l.
 \fBrecv\fP(2)
 \fBrecvfrom\fP(2)
 \fBrecvmsg\fP(2)
+\fBrecvmmsg\fP(2)      2.6.33
 \fBremap_file_pages\fP(2)      2.6
 \fBremovexattr\fP(2)   2.6; 2.4.18
 \fBrename\fP(2)
@@ -417,6 +420,8 @@ l l l.
 \fBrt_sigreturn\fP(2)  2.2
 \fBrt_sigsuspend\fP(2) 2.2
 \fBrt_sigtimedwait\fP(2)       2.2
+\fBrt_tgsigqueueinfo\fP(2)     2.6.31
+.\" Implements \fBpthread_sigqueue\fP(3)
 \fBsched_get_priority_max\fP(2)        2.0
 \fBsched_get_priority_min\fP(2)        2.0
 \fBsched_getaffinity\fP(2)     2.6
@@ -549,7 +554,7 @@ l l l.
 \fBustat\fP(2)
 \fButime\fP(2)
 \fButimensat\fP(2)     2.6.22
-\fButimes\fP(2)        2.6
+\fButimes\fP(2)        2.2
 \fBvfork\fP(2)
 \fBvhangup\fP(2)
 \fBvm86old\fP(2)
index 54323cf..fc2db33 100644 (file)
@@ -40,7 +40,7 @@ Feature Test Macro Requirements for glibc (see
 .in
 .sp
 .BR timer_create ():
-_POSIX_C_SOURCE >= 199309
+_POSIX_C_SOURCE >= 199309L
 .SH DESCRIPTION
 .BR timer_create ()
 creates a new per-process interval timer.
index 39bb300..21b8527 100644 (file)
@@ -38,7 +38,7 @@ Feature Test Macro Requirements for glibc (see
 .in
 .sp
 .BR timer_delete ():
-_POSIX_C_SOURCE >= 199309
+_POSIX_C_SOURCE >= 199309L
 .SH DESCRIPTION
 .BR timer_delete ()
 deletes the timer whose ID is given in
index a197adc..7ed9d85 100644 (file)
@@ -38,7 +38,7 @@ Feature Test Macro Requirements for glibc (see
 .in
 .sp
 .BR timer_getoverrun ():
-_POSIX_C_SOURCE >= 199309
+_POSIX_C_SOURCE >= 199309L
 .SH DESCRIPTION
 .BR timer_getoverrun ()
 returns the "overrun count" for the timer referred to by
index b0a509b..ba596cb 100644 (file)
@@ -43,7 +43,7 @@ Feature Test Macro Requirements for glibc (see
 .sp
 .BR timer_settime (),
 .BR timer_gettime ():
-_POSIX_C_SOURCE >= 199309
+_POSIX_C_SOURCE >= 199309L
 .SH DESCRIPTION
 .BR timer_settime ()
 arms or disarms the timer identified by
index 00c4019..e0758f4 100644 (file)
@@ -27,7 +27,7 @@
 .\" 2008-10-06, mtk: Created this as a new page by splitting
 .\"     umount/umount2 material out of mount.2
 .\"
-.TH UMOUNT 2 2009-09-03 "Linux" "Linux Programmer's Manual"
+.TH UMOUNT 2 2010-06-19 "Linux" "Linux Programmer's Manual"
 .SH NAME
 umount, umount2 \- unmount file system
 .SH SYNOPSIS
@@ -88,15 +88,22 @@ This flag cannot be specified with either
 .B MNT_FORCE
 or
 .BR MNT_DETACH .
+.TP
+.BR UMOUNT_NOFOLLOW " (since Linux 2.6.34)"
+Don't dereference
+.I target
+if it is a symbolic link.
+This flag allows security problems to be avoided in in set-user-ID-\fIroot\fP
+programs that allow unprivileged users to unmount file systems.
 .SH "RETURN VALUE"
 On success, zero is returned.
 On error, \-1 is returned, and
 .I errno
 is set appropriately.
 .SH ERRORS
-The error values given below result from filesystem type independent
+The error values given below result from file-system type independent
 errors.
-Each filesystem type may have its own special errors and its
+Each file system type may have its own special errors and its
 own special behavior.
 See the kernel source code for details.
 .TP
index ef86812..18e2be2 100644 (file)
@@ -74,7 +74,7 @@ is a special case of
 It is used to create new processes without copying the page tables of
 the parent process.
 It may be useful in performance-sensitive applications
-where a child will be created which then immediately issues an
+where a child is created which then immediately issues an
 .BR execve (2).
 .PP
 .BR vfork ()
@@ -125,7 +125,7 @@ child was using its resources.
 The use of
 .BR vfork ()
 was tricky: for example, not modifying data
-in the parent process depended on knowing which variables are
+in the parent process depended on knowing which variables were
 held in a register.
 .SH "CONFORMING TO"
 4.3BSD, POSIX.1-2001.
index 7d5d022..898e981 100644 (file)
@@ -1,7 +1,7 @@
 .\" Copyright 2002 Walter Harms (walter.harms@informatik.uni-oldenburg.de)
 .\" Distributed under GPL
 .\"
-.TH CPROJ 3 2008-08-11 "" "Linux Programmer's Manual"
+.TH CPROJ 3 2010-06-10 "" "Linux Programmer's Manual"
 .SH NAME
 cproj, cprojf, cprojl \- project into Riemann Sphere
 .SH SYNOPSIS
@@ -29,7 +29,9 @@ These functions first appeared in glibc in version 2.1.
 .SH "CONFORMING TO"
 C99.
 .SH NOTES
-The glibc implementation is broken and does something entirely different.
+In glibc 2.11 and earlier, the implementation does something different
+(a \fIstereographic\fP projection onto a Riemann Sphere).
+.\" http://sources.redhat.com/bugzilla/show_bug.cgi?id=10401
 .SH "SEE ALSO"
 .BR cabs (3),
 .BR complex (7)
index 1139792..5673a38 100644 (file)
@@ -32,7 +32,7 @@
 .\" added _XOPEN_SOURCE, aeb, 970705
 .\" added GNU MD5 stuff, aeb, 011223
 .\"
-.TH CRYPT 3 2008-08-25 "" "Linux Programmer's Manual"
+.TH CRYPT 3 2010-06-20 "" "Linux Programmer's Manual"
 .SH NAME
 crypt, crypt_r \- password and data encryption
 .SH SYNOPSIS
@@ -217,10 +217,10 @@ SHA-512 | 86 characters
 
 The characters in "\fIsalt\fP" and "\fIencrypted\fP" are drawn from the set
 [\fBa\fP\(en\fBzA\fP\(en\fBZ0\fP\(en\fB9./\fP].
-In the SHA implementation the entire
+In the MD5 and SHA implementations the entire
 .I key
 is significant (instead of only the first
-8 bytes in MD5).
+8 bytes in DES).
 .SH "SEE ALSO"
 .BR login (1),
 .BR passwd (1),
index 180ff91..e9c9db4 100644 (file)
@@ -153,7 +153,7 @@ set in the argument
 and for which the corresponding exception is currently set.
 .SS Rounding mode
 The rounding mode determines how the result of floating-point operations
-is treated when the result cannot be exactly represented in the signifcand.
+is treated when the result cannot be exactly represented in the significand.
 Various rounding modes may be provided:
 round to nearest (the default),
 round up (towards positive infinity),
index c92924f..bbf786b 100644 (file)
@@ -3,7 +3,7 @@
 .\" Distributed under the GPL.
 .\" 2008-12-04, Petr Baudis <pasky@suse.cz>: Document open_wmemstream()
 .\"
-.TH FMEMOPEN 3 2009-09-15 "GNU" "Linux Programmer's Manual"
+.TH FMEMOPEN 3 2010-06-10 "GNU" "Linux Programmer's Manual"
 .SH NAME
 fmemopen, open_memstream, open_wmemstream \-  open memory as stream
 .SH SYNOPSIS
@@ -232,7 +232,7 @@ main(int argc, char *argv[])
 
     out = open_memstream(&ptr, &size);
     if (out == NULL)
-        handle_error("fmemopen");
+        handle_error("open_memstream");
 
     for (;;) {
         s = fscanf(in, "%d", &v);
index 8031044..2c3a701 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 FOPENCOOKIE 2 2008-12-05 "Linux" "Linux Programmer's Manual"
+.TH FOPENCOOKIE 3 2008-12-05 "Linux" "Linux Programmer's Manual"
 .SH NAME
 fopencookie \- opening a custom stream
 .SH SYNOPSIS
diff --git a/original/man3/fstatvfs.3 b/original/man3/fstatvfs.3
new file mode 100644 (file)
index 0000000..adec9dd
--- /dev/null
@@ -0,0 +1 @@
+.so man3/statvfs.3
index 5df6a1b..7ab9c18 100644 (file)
@@ -31,7 +31,7 @@
 .\"    reorganized and rewrote much of the page
 .\" 2006-05-24, Michael Kerrisk <mtk.manpages@gmail.com>
 .\"    Added an example program.
-.TH FTW 3 2008-08-06 "Linux" "Linux Programmer's Manual"
+.TH FTW 3 2010-06-10 "Linux" "Linux Programmer's Manual"
 .SH NAME
 ftw, nftw \- file tree walk
 .SH SYNOPSIS
@@ -81,8 +81,16 @@ calls
 and
 .IR typeflag .
 .I fpath
-is the pathname of the entry relative to
-.IR dirpath .
+is the pathname of the entry,
+and is expressed either as a pathname relative to the calling process's
+current working directory at the time of the call to
+.BR ftw (),
+if
+.IR dirpath
+was expressed as a relative pathname,
+or as an absolute pathname, if
+.I dirpath
+was expressed as an absolute pathname.
 .I sb
 is a pointer to the
 .I stat
@@ -310,6 +318,10 @@ POSIX.1-2008 marks
 .BR ftw ()
 as obsolete.
 .SH NOTES
+POSIX.1-2001 note that the results are unspecified if
+.I fn
+does not preserve the current working directory.
+.PP
 The function
 .BR nftw ()
 and the use of \fBFTW_SL\fP with
index d33b8ab..2d54aab 100644 (file)
@@ -38,7 +38,7 @@
 .\" FIXME . glibc's 2.9 NEWS file documents DCCP and UDP-lite support
 .\"           and is SCTP support now also there?
 .\"
-.TH GETADDRINFO 3 2009-09-03 "GNU" "Linux Programmer's Manual"
+.TH GETADDRINFO 3 2010-06-17 "GNU" "Linux Programmer's Manual"
 .SH NAME
 getaddrinfo, freeaddrinfo, gai_strerror \- network address and
 service translation
@@ -393,7 +393,7 @@ If both
 and
 .B AI_ALL
 are specified in
-.IR hints.ai_family ,
+.IR hints.ai_flags ,
 then return both IPv6 and IPv4-mapped IPv6 addresses
 in the list pointed to by
 .IR res .
index 8987ac9..b74c923 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.
 .\" License.
-.TH GETLINE 3  2009-12-05 "GNU" "Linux Programmer's Manual"
+.TH GETLINE 3  2010-06-12 "GNU" "Linux Programmer's Manual"
 .SH NAME
 getline, getdelim \- delimited string input
 .SH SYNOPSIS
@@ -49,7 +49,7 @@ Since glibc 2.10:
 .br
 .BR getline (),
 .BR getdelim ():
-_POSIX_C_SOURCE >= 200809 || _XOPEN_SOURCE >= 700
+_POSIX_C_SOURCE >= 200809L || _XOPEN_SOURCE >= 700
 .SH DESCRIPTION
 .BR getline ()
 reads an entire line from \fIstream\fP,
@@ -64,7 +64,7 @@ is NULL, then
 .BR getline ()
 will allocate a buffer for storing the line,
 which should be freed by the user program.
-(The value in
+(In this case, the value in
 .I *n
 is ignored.)
 
@@ -112,7 +112,7 @@ but not including the terminating null byte.
 This value can be used
 to handle embedded null bytes in the line read.
 
-Both functions return \-1  on failure to read a line (including end of file
+Both functions return \-1  on failure to read a line (including end-of-file
 condition).
 .SH ERRORS
 .TP
@@ -142,8 +142,8 @@ They were standardized in POSIX.1-2008.
 int
 main(void)
 {
-    FILE * fp;
-    char * line = NULL;
+    FILE *fp;
+    char *line = NULL;
     size_t len = 0;
     ssize_t read;
 
@@ -156,8 +156,7 @@ main(void)
         printf("%s", line);
     }
 
-    if (line)
-        free(line);
+    free(line);
     exit(EXIT_SUCCESS);
 }
 .fi
index fbb467d..bc9c854 100644 (file)
@@ -81,7 +81,7 @@ While reading the password, signal generation
 .RB ( SIGINT ,
 .BR SIGQUIT ,
 .BR SIGSTOP ,
-.BR SIGTSTOP )
+.BR SIGTSTP )
 is disabled and the corresponding characters
 (usually control-C, control-\e, control-Z and control-Y)
 are transmitted as part of the password.
index d0426c2..b3f6620 100644 (file)
@@ -31,7 +31,7 @@
 .\" Modified 2002-07-27 by Walter Harms
 .\"    (walter.harms@informatik.uni-oldenburg.de)
 .\"
-.TH LOG 3  2008-08-10  "" "Linux Programmer's Manual"
+.TH LOG 3  2010-06-13  "" "Linux Programmer's Manual"
 .SH NAME
 log, logf, logl \- natural logarithmic function
 .SH SYNOPSIS
@@ -133,5 +133,7 @@ exception.
 .SH "SEE ALSO"
 .BR cbrt (3),
 .BR clog (3),
+.BR log2 (3),
+.BR log10 (3),
 .BR log1p (3),
 .BR sqrt (3)
index 5528d94..9ab1927 100644 (file)
@@ -31,7 +31,7 @@
 .\" Modified 2002-07-27 by Walter Harms
 .\"    (walter.harms@informatik.uni-oldenburg.de)
 .\"
-.TH LOG10 3  2008-08-05  "" "Linux Programmer's Manual"
+.TH LOG10 3  2010-06-13  "" "Linux Programmer's Manual"
 .SH NAME
 log10, log10f, log10l \-  base-10 logarithmic function
 .SH SYNOPSIS
@@ -88,4 +88,6 @@ SVr4, 4.3BSD, C89.
 .BR cbrt (3),
 .BR clog10 (3),
 .BR exp10 (3),
+.BR log (3),
+.BR log2 (3),
 .BR sqrt (3)
index 6a86b9a..7ab73d8 100644 (file)
@@ -31,7 +31,7 @@
 .\" Modified 2002-07-27 by Walter Harms
 .\"    (walter.harms@informatik.uni-oldenburg.de)
 .\"
-.TH LOG2 3  2008-08-11  "" "Linux Programmer's Manual"
+.TH LOG2 3  2010-06-13  "" "Linux Programmer's Manual"
 .SH NAME
 log2, log2f, log2l \- base-2 logarithmic function
 .SH SYNOPSIS
@@ -90,4 +90,6 @@ SVr4, 4.3BSD, C89.
 .SH "SEE ALSO"
 .BR cbrt (3),
 .BR clog2 (3),
+.BR log (3),
+.BR log10 (3),
 .BR sqrt (3)
diff --git a/original/man3/mkostemps.3 b/original/man3/mkostemps.3
new file mode 100644 (file)
index 0000000..08cc2de
--- /dev/null
@@ -0,0 +1 @@
+.so man3/mkstemp.3
index bea792f..4478853 100644 (file)
@@ -30,7 +30,7 @@
 .\" Modified 990328, aeb
 .\" 2008-06-19, mtk, Added mkostemp(); various other changes
 .\"
-.TH MKSTEMP 3  2008-06-19 "GNU" "Linux Programmer's Manual"
+.TH MKSTEMP 3  2010-06-19 "GNU" "Linux Programmer's Manual"
 .SH NAME
 mkstemp, mkostemp \- create a unique temporary file
 .SH SYNOPSIS
@@ -40,6 +40,10 @@ mkstemp, mkostemp \- create a unique temporary file
 .BI "int mkstemp(char *" template );
 .sp
 .BI "int mkostemp (char *" template ", int " flags );
+.sp
+.BI "int mkstemps(char *" template ", int " suffixlen );
+.sp
+.BI "int mkostemps(char *" template ", int " suffixlen ", int " flags );
 .fi
 .sp
 .in -4n
@@ -52,6 +56,12 @@ _BSD_SOURCE || _SVID_SOURCE || _XOPEN_SOURCE\ >=\ 500
 .br
 .BR mkostemp ():
 _GNU_SOURCE
+.br
+.BR mkstemps ():
+_BSD_SOURCE || _SVID_SOURCE
+.br
+.BR mkostemps ():
+_GNU_SOURCE
 .SH DESCRIPTION
 The
 .BR mkstemp ()
@@ -78,8 +88,9 @@ The file is opened with the
 .B O_EXCL
 flag, guaranteeing that the caller is the process that creates the file.
 
+The
 .BR mkostemp ()
-is like
+function is like
 .BR mkstemp (),
 with the difference that flags as for
 .BR open (2)
@@ -88,6 +99,31 @@ may be specified in
 (e.g.,
 .BR O_APPEND ,
 .BR O_SYNC ).
+
+The
+.BR mkstemps ()
+function is like
+.BR mkstemp (),
+except that the string in
+.I template
+contains a suffix of
+.I suffixlen
+characters.
+Thus,
+.I template
+is of the form
+.IR "prefixXXXXXXsuffix" ,
+and the string XXXXXX is modified as for
+.BR mkstemp ().
+
+The
+.BR mkostemps ()
+function is to
+.BR mkstemps ()
+as
+.BR mkostemp ()
+is to
+.BR mkstemp ().
 .SH "RETURN VALUE"
 On success, these functions return the file descriptor
 of the temporary file.
@@ -101,19 +137,46 @@ Could not create a unique temporary filename.
 Now the contents of \fItemplate\fP are undefined.
 .TP
 .B EINVAL
-The last six characters of \fItemplate\fP were not XXXXXX.
-Now \fItemplate\fP is unchanged.
+For
+.BR mkstemp ()
+and
+.BR mkostemp ():
+The last six characters of \fItemplate\fP were not XXXXXX;
+now \fItemplate\fP is unchanged.
+.sp
+For
+.BR mkstemps ()
+and
+.BR mkostemps ()
+.I template
+is less than
+.I "(6 + suffixlen)"
+characters long, or the last 6 characters before the suffix in
+.I template
+were not XXXXXX.
 .PP
 These functions may also fail with any of the errors described for
 .BR open (2).
 .SH VERSIONS
 .BR mkostemp ()
 is available since glibc 2.7.
+.BR mkstemps ()
+and
+.BR mkostemps ()
+are available since glibc 2.11.
 .SH "CONFORMING TO"
 .BR mkstemp ():
 4.3BSD, POSIX.1-2001.
-.BR mkostemp ():
-is a glibc extension.
+
+.BR mkstemps ():
+unstandardized, but appears on several other systems.
+.\" mkstemps() appears to be at least on the BSDs, Mac OS X, Solaris,
+.\" and Tru64.
+
+.BR mkostemp ()
+and
+.BR mkostemps ():
+are glibc extensions.
 .SH NOTES
 The old behavior of creating a file with mode 0666 may be
 a security risk, especially since other Unix flavors use 0600,
diff --git a/original/man3/mkstemps.3 b/original/man3/mkstemps.3
new file mode 100644 (file)
index 0000000..08cc2de
--- /dev/null
@@ -0,0 +1 @@
+.so man3/mkstemp.3
index a5c64a3..50466e7 100644 (file)
@@ -27,7 +27,7 @@
 .\" Modified Sat Jul 24 18:46:01 1993 by Rik Faith (faith@cs.unc.edu)
 .\" Modified 11 June 1995 by Andries Brouwer (aeb@cwi.nl)
 .\" 2007-07-30 Ulrich Drepper <drepper@redhat.com>: document fdopendir().
-.TH OPENDIR 3  2008-08-06 "GNU" "Linux Programmer's Manual"
+.TH OPENDIR 3  2010-06-20 "GNU" "Linux Programmer's Manual"
 .SH NAME
 opendir, fdopendir \- open a directory
 .SH SYNOPSIS
@@ -39,6 +39,18 @@ opendir, fdopendir \- open a directory
 .BI "DIR *opendir(const char *" name );
 .BI "DIR *fdopendir(int " fd );
 .fi
+.sp
+.in -4n
+Feature Test Macro Requirements for glibc (see
+.BR feature_test_macros (7)):
+.in
+.sp
+.BR fdopendir ():
+.br
+Since glibc 2.10: _XOPEN_SOURCE >= 700 || _POSIX_C_SOURCE >= 200809L
+.br
+Before glibc 2.10:
+_GNU_SOURCE
 .SH DESCRIPTION
 The
 .BR opendir ()
index e033af0..3266c2d 100644 (file)
@@ -29,7 +29,7 @@
 .\"
 .\" Added -lutil remark, 030718
 .\"
-.TH OPENPTY 3  2003-07-18 "GNU" "Linux Programmer's Manual"
+.TH OPENPTY 3  2010-06-13 "GNU" "Linux Programmer's Manual"
 .SH NAME
 openpty, login_tty, forkpty \- tty utility functions
 .SH SYNOPSIS
@@ -37,10 +37,12 @@ openpty, login_tty, forkpty \- tty utility functions
 .B #include <pty.h>
 .sp
 .BI "int openpty(int *" amaster ", int *" aslave ", char *" name ,
-.BI "            struct termios *" termp ", struct winsize *" winp );
+.BI "            const struct termios *" termp ,
+.BI "            const struct winsize *" winp );
 .sp
-.BI "pid_t forkpty(int *" amaster ", char *" name ", struct termios *" termp ,
-.BI "              struct winsize *" winp );
+.BI "pid_t forkpty(int *" amaster ", char *" name ,
+.BI "              const struct termios *" termp ,
+.BI "              const struct winsize *" winp );
 .sp
 .B #include <utmp.h>
 .sp
@@ -145,11 +147,16 @@ or
 fails.
 .SH "CONFORMING TO"
 These are BSD functions, present in libc5 and glibc2.
+They are not standardized in POSIX.
 .SH NOTES
-.\" These functions are included in libutil, hence you'll need to add
-.\" .B \-lutil
-.\" to your compiler command line.
-.\"
+The
+.B const
+modifiers were added to the structure pointer arguments of
+.BR openpty ()
+and
+.BR forkpty ()
+in glibc 2.8.
+
 In versions of glibc before 2.0.92,
 .BR openpty ()
 returns file descriptors for a BSD pseudo-terminal pair;
index ed4e906..a72dde7 100644 (file)
@@ -27,7 +27,7 @@
 .\" Modified 1993-07-25 by Rik Faith (faith@cs.unc.edu)
 .\" Modified 2004-10-31 by aeb
 .\"
-.TH RESOLVER 3 2008-11-07 "GNU" "Linux Programmer's Manual"
+.TH RESOLVER 3 2010-06-17 "GNU" "Linux Programmer's Manual"
 .SH NAME
 res_init, res_query, res_search, res_querydomain, res_mkquery, res_send,
 dn_comp, dn_expand \- resolver routines
@@ -69,8 +69,7 @@ dn_comp, dn_expand \- resolver routines
 .sp
 .BI "int dn_comp(unsigned char *" exp_dn ", unsigned char *" comp_dn ,
 .RS
-.BI "int " length ", unsigned char **" dnptrs ", unsigned char *" exp_dn ,
-.BI "unsigned char **" lastdnptr );
+.BI "int " length ", unsigned char **" dnptrs ", unsigned char **" lastdnptr );
 .RE
 .sp
 .BI "int dn_expand(unsigned char *" msg ", unsigned char *" eomorig ,
diff --git a/original/man3/statvfs.3 b/original/man3/statvfs.3
new file mode 100644 (file)
index 0000000..6530779
--- /dev/null
@@ -0,0 +1,180 @@
+.\" Copyright (C) 2003 Andries Brouwer (aeb@cwi.nl)
+.\"
+.\" 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.
+.\"
+.\" The pathconf note is from Walter Harms
+.\" This is not a system call on Linux
+.\"
+.\" Modified 2004-06-23 by Michael Kerrisk <mtk.manpages@gmail.com>
+.\"
+.TH STATVFS 2 2003-08-22 "Linux" "Linux Programmer's Manual"
+.SH NAME
+statvfs, fstatvfs \- get file system statistics
+.SH SYNOPSIS
+.B #include <sys/statvfs.h>
+.sp
+.BI "int statvfs(const char *" path ", struct statvfs *" buf );
+.br
+.BI "int fstatvfs(int " fd ", struct statvfs *" buf );
+.SH DESCRIPTION
+The function
+.BR statvfs ()
+returns information about a mounted file system.
+.I path
+is the pathname of any file within the mounted file system.
+.I buf
+is a pointer to a
+.I statvfs
+structure defined approximately as follows:
+
+.in +4n
+.nf
+struct statvfs {
+    unsigned long  f_bsize;    /* file system block size */
+    unsigned long  f_frsize;   /* fragment size */
+    fsblkcnt_t     f_blocks;   /* size of fs in f_frsize units */
+    fsblkcnt_t     f_bfree;    /* # free blocks */
+    fsblkcnt_t     f_bavail;   /* # free blocks for unprivileged users */
+    fsfilcnt_t     f_files;    /* # inodes */
+    fsfilcnt_t     f_ffree;    /* # free inodes */
+    fsfilcnt_t     f_favail;   /* # free inodes for unprivileged users */
+    unsigned long  f_fsid;     /* file system ID */
+    unsigned long  f_flag;     /* mount flags */
+    unsigned long  f_namemax;  /* maximum filename length */
+};
+.fi
+.in
+
+Here the types
+.I fsblkcnt_t
+and
+.I fsfilcnt_t
+are defined in
+.IR <sys/types.h> .
+Both used to be
+.IR "unsigned long" .
+
+The field
+.I f_flag
+is a bit mask (of mount flags, see
+.BR mount (8)).
+Bits defined by POSIX are
+.TP
+.B ST_RDONLY
+Read-only file system.
+.TP
+.B ST_NOSUID
+Set-user-ID/set-group-ID bits are ignored by
+.BR exec (3).
+.LP
+It is unspecified whether all members of the returned struct
+have meaningful values on all file systems.
+
+.BR fstatvfs ()
+returns the same information about an open file referenced by descriptor
+.IR fd .
+.SH "RETURN VALUE"
+On success, zero is returned.
+On error, \-1 is returned, and
+.I errno
+is set appropriately.
+.SH ERRORS
+.TP
+.B EACCES
+.RB ( statvfs ())
+Search permission is denied for a component of the path prefix of
+.IR path .
+(See also
+.BR path_resolution (7).)
+.TP
+.B EBADF
+.RB ( fstatvfs ())
+.I fd
+is not a valid open file descriptor.
+.TP
+.B EFAULT
+.I Buf
+or
+.I path
+points to an invalid address.
+.TP
+.B EINTR
+This call was interrupted by a signal.
+.TP
+.B EIO
+An I/O error occurred while reading from the file system.
+.TP
+.B ELOOP
+.RB ( statvfs ())
+Too many symbolic links were encountered in translating
+.IR path .
+.TP
+.B ENAMETOOLONG
+.RB ( statvfs ())
+.I path
+is too long.
+.TP
+.B ENOENT
+.RB ( statvfs ())
+The file referred to by
+.I path
+does not exist.
+.TP
+.B ENOMEM
+Insufficient kernel memory was available.
+.TP
+.B ENOSYS
+The file system does not support this call.
+.TP
+.B ENOTDIR
+.RB ( statvfs ())
+A component of the path prefix of
+.I path
+is not a directory.
+.TP
+.B EOVERFLOW
+Some values were too large to be represented in the returned struct.
+.SH "CONFORMING TO"
+POSIX.1-2001.
+.SH NOTES
+The Linux kernel has system calls
+.BR statfs (2)
+and
+.BR fstatfs (2)
+to support this library call.
+
+The current glibc implementations of
+.sp
+.nf
+   pathconf(path, _PC_REC_XFER_ALIGN);
+   pathconf(path, _PC_ALLOC_SIZE_MIN);
+   pathconf(path, _PC_REC_MIN_XFER_SIZE);
+.fi
+.sp
+respectively use the
+.IR f_frsize ,
+.IR f_frsize ,
+and
+.I f_bsize
+fields of the return value of
+.IR "statvfs(path,buf)" .
+.SH "SEE ALSO"
+.BR statfs (2)
index f2ba8df..a38d30d 100644 (file)
@@ -44,7 +44,7 @@ and testing the value of certain macros.
 .LP
 At run time, one can ask for numerical values using the present function
 .BR sysconf ().
-On can ask for numerical values that may depend
+One can ask for numerical values that may depend
 on the file system a file is in using the calls
 .BR fpathconf (3)
 and
index 3d096c1..8c8a3d2 100644 (file)
@@ -38,7 +38,7 @@
 .\"     Enhanced the discussion of "raw" mode for cfmakeraw().
 .\"     Document CMSPAR.
 .\"
-.TH TERMIOS 3 2007-11-26 "Linux" "Linux Programmer's Manual"
+.TH TERMIOS 3 2010-06-20 "Linux" "Linux Programmer's Manual"
 .SH NAME
 termios, tcgetattr, tcsetattr, tcsendbreak, tcdrain, tcflush, tcflow,
 cfmakeraw, cfgetospeed, cfgetispeed, cfsetispeed, cfsetospeed, cfsetspeed \-
@@ -438,13 +438,9 @@ or
 .BR _SVID_SOURCE ]
 .TP
 .B NOFLSH
-Disable flushing the input and output queues when generating the
-.BR SIGINT ,
-.BR SIGQUIT ,
-and
-.B SIGSUSP
-signals.
-.\" Stevens lets SIGSUSP only flush the input queue
+Disable flushing the input and output queues when generating signals for the
+INT, QUIT, and SUSP characters.
+.\" Stevens lets SUSP only flush the input queue
 .TP
 .B TOSTOP
 Send the
index 47b9602..f890799 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-02-25 "Linux" "Linux Programmer's Manual"
+.TH CORE 5 2010-02-27 "Linux" "Linux Programmer's Manual"
 .SH NAME
 core \- core dump file
 .SH DESCRIPTION
@@ -222,14 +222,23 @@ bit 3
 Dump file-backed shared mappings.
 .\" file-backed shared mappings of course also update the underlying
 .\" mapped file.
+.TP
+bit 4 (since Linux 2.6.24)
+Dump ELF headers.
+.TP
+bit 5 (since Linux 2.6.28)
+Dump private huge pages.
+.TP
+bit 6 (since Linux 2.6.28)
+Dump shared huge pages.
 .RE
 .PD
 .PP
-The default value of
-.I coredump_filter
-is 0x3;
-this reflects traditional Linux behavior and means that
-only anonymous memory segments are dumped.
+By default, the following bits are set: 0, 1, 4 (if the
+.B CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS
+kernel configuration option is enabled), and 5.
+The value of this file is displayed in hexadecimal.
+(The default value is thus displayed as 33.)
 
 Memory-mapped I/O pages such as frame buffer are never dumped, and
 virtual DSO pages are always dumped, regardless of the
@@ -238,7 +247,7 @@ value.
 
 A child process created via
 .BR fork (2)
-inherits its parents
+inherits its parent's
 .I coredump_filter
 value;
 the
index 20ed3d8..52a4e0a 100644 (file)
@@ -30,7 +30,7 @@
 .\" 2007-10-11, Mike Frysinger <vapier@gentoo.org>, various fixes
 .\" 2007-12-08, mtk, Converted from mdoc to man macros
 .\"
-.TH ELF 5 2007-12-28 "Linux" "Linux Programmer's Manual"
+.TH ELF 5 2010-06-19 "Linux" "Linux Programmer's Manual"
 .SH NAME
 elf \- format of Executable and Linking Format (ELF) files
 .SH SYNOPSIS
@@ -347,9 +347,12 @@ The value for
 .B EI_PAD
 will change in
 the future if currently unused bytes are given meanings.
-.TP
-.BR EI_BRAND
-Start of architecture identification.
+.\" As reported by Yuri Kozlov  and confirmed by Mike Frysinger, EI_BRAND is
+.\" not in GABI (http://www.sco.com/developers/gabi/latest/ch4.eheader.html)
+.\" It looks to be a BSDism
+.\" .TP
+.\" .BR EI_BRAND
+.\" Start of architecture identification.
 .TP
 .BR EI_NIDENT
 The size of the
@@ -543,6 +546,30 @@ in bytes.
 If a file has no program header,
 .IR e_phnum
 holds the value zero.
+.IP
+If the number of entries in the program header table is larger than or equal to
+.\" This is a Linux extension, added in Linux 2.6.34.
+.BR PN_XNUM
+(0xffff), this member holds
+.BR PN_XNUM
+(0xffff) and the real number of entries in the program header table is held
+in the
+.IR sh_info
+member of the initial entry in section header table.
+Otherwise, the
+.IR sh_info
+member of the initial entry contains the value zero.
+.\" .Bl -tag -width "PN_XNUM"
+.RS 12
+.TP 9
+.BR PN_XNUM
+This is defined as 0xffff, the largest number
+.IR e_phnum
+can have, specifying where the actual number of program headers is assigned.
+.PD
+.RE
+.\" .El
+.IP
 .TP
 .IR e_shentsize
 This member holds a sections header's size in bytes.
@@ -561,6 +588,18 @@ If a file has no section
 header table,
 .IR e_shnum
 holds the value of zero.
+.IP
+If the number of entries in the section header table is larger than or equal to
+.BR SHN_LORESERVE
+(0xff00),
+.IR e_shnum
+holds the value zero and the real number of entries in the section header
+table is held in the
+.IR sh_size
+member of the initial entry in section header table.
+Otherwise, the
+.IR sh_size
+member of the initial entry in the section header table holds the value zero.
 .TP
 .IR e_shstrndx
 This member holds the section header table index of the entry associated
@@ -568,6 +607,17 @@ with the section name string table.
 If the file has no section name string
 table, this member holds the value
 .BR SHN_UNDEF .
+.IP
+If the index of section name string table section is larger than or equal to
+.BR SHN_LORESERVE
+(0xff00), this member holds
+.BR SHN_XINDEX
+(0xffff) and the real index of the section name string table section
+is held in the
+.IR sh_link
+member of the initial entry in section header table. Otherwise, the
+.IR sh_link
+member of the initial entry in section header table contains the value zero.
 .RS 12
 .\" .Bl -tag -width "SHN_LORESERVE"
 .TP 14
@@ -841,10 +891,21 @@ holds the size in bytes of each entry.
 .PP
 A section header table index is a subscript into this array.
 Some section
-header table indices are reserved.
+header table indices are reserved:
+the initial entry and the indices between
+.B SHN_LORESERVE
+and
+.BR SHN_HIRESERVE .
+The initial entry is used in ELF extensions for
+.IR e_phnum ,
+.IR e_shnum
+and
+.IR e_strndx ;
+in other cases, each field in the initial entry is set to zero.
 An object file does not have sections for
 these special indices:
 .\" .Bl -tag -width "SHN_LORESERVE"
+.RS
 .TP 14
 .BR SHN_UNDEF
 This value marks an undefined, missing, irrelevant or otherwise meaningless
@@ -884,6 +945,7 @@ and
 inclusive.
 The section header table does not contain entries for the
 reserved indices.
+.RE
 .\" .El
 .PP
 The section header has the following structure:
@@ -1310,7 +1372,7 @@ No attribute types are used.
 .IR .note
 This section holds information in the
 "Note Section"
-format described below.
+format.
 This section is of type
 .BR SHT_NOTE .
 No attribute types are used.
@@ -1851,6 +1913,16 @@ This is automatically populated by the linker.
 ELF first appeared in
 System V.
 The ELF format is an adopted standard.
+.PP
+The extensions for
+.IR e_phnum ,
+.IR e_shnum
+and
+.IR e_strndx
+respectively are
+Linux extensions.
+Sun, BSD and AMD64 also support them; for further information,
+look under SEE ALSO.
 .\" .SH AUTHORS
 .\" The original version of this manual page was written by
 .\" .An Jeroen Ruigrok van der Werven
@@ -1876,3 +1948,10 @@ Santa Cruz Operation,
 Unix System Laboratories,
 "Object Files",
 .IR "Executable and Linking Format (ELF)" .
+.PP
+Sun Microsystems,
+.IR "Linker and Libraries Guide" .
+.PP
+AMD64 ABI Draft,
+.IR "System V Application Binary Interface AMD64 Architecture Processor Supplement" .
+.PP
index 5a5c01c..efc0f6a 100644 (file)
 .\"
 .\" 2007-12-14 mtk Added Reiserfs, XFS, JFS.
 .\"
-.TH FILESYSTEMS 5 2007-12-14 "Linux" "Linux Programmer's Manual"
+.TH FILESYSTEMS 5 2010-05-24 "Linux" "Linux Programmer's Manual"
 .nh
 .SH NAME
-filesystems \- Linux file-system types: minix, ext, ext2, ext3, Reiserfs,
+filesystems \- Linux file-system types: minix, ext, ext2, ext3, ext4, Reiserfs,
 XFS, JFS, xia, msdos,
-umsdos, vfat, proc, nfs, iso9660, hpfs, sysv, smb, ncpfs
+umsdos, vfat, ntfs, proc, nfs, iso9660, hpfs, sysv, smb, ncpfs
 .SH DESCRIPTION
 When, as is customary, the
 .B proc
@@ -77,6 +77,11 @@ is a journaling version of the ext2 file system.
 It is easy to
 switch back and forth between ext2 and ext3.
 .TP
+.B ext4
+is a set of upgrades to ext3 including substantial performance and
+reliability enhancements,
+plus large increases in volume, file, and directory size limits.
+.TP
 .B Reiserfs
 is a journaling file system, designed by Hans Reiser,
 that was integrated into Linux in kernel 2.4.1.
@@ -116,6 +121,11 @@ sacrificing compatibility with DOS.
 is an extended DOS file system used by Microsoft Windows95 and Windows NT.
 VFAT adds the capability to use long filenames under the MSDOS file system.
 .TP
+.B ntfs
+replaces Microsoft Window's FAT file systems (VFAT, FAT32).
+It has reliability, performance, and space-utilization enhancements
+plus features like ACLs, journaling, encryption, and so on.
+.TP
 .B proc
 is a pseudo file system which is used as an interface to kernel data
 structures rather than reading and interpreting
index 9b8757e..b8f4ff6 100644 (file)
@@ -58,7 +58,7 @@
 .\" to see what information could be imported from that file
 .\" into this file.
 .\"
-.TH PROC 5 2009-09-30 "Linux" "Linux Programmer's Manual"
+.TH PROC 5 2010-06-19 "Linux" "Linux Programmer's Manual"
 .SH NAME
 proc \- process information pseudo-file system
 .SH DESCRIPTION
@@ -633,7 +633,7 @@ The session ID of the process.
 The controlling terminal of the process.
 (The minor device number is contained in the combination of bits
 31 to 20 and 7 to 0;
-the major device number is in bits 15 t0 8.)
+the major device number is in bits 15 to 8.)
 .TP
 \fItpgid\fP %d
 .\" This field and following, up to and including wchan added 0.99.1
@@ -1709,10 +1709,6 @@ These variables can be read and sometimes modified using
 the \fI/proc\fP file system, and the (deprecated)
 .BR sysctl (2)
 system call.
-Presently, there are subdirectories
-.IR abi ", " debug ", " dev ", " fs ", " kernel ", " net ", " proc ", "
-.IR rxrpc ", " sunrpc " and " vm
-that each contain more files and subdirectories.
 .TP
 .IR /proc/sys/abi " (since Linux 2.4.10)"
 This directory may contain files with application binary information.
@@ -1731,15 +1727,8 @@ On
 some systems, it may be empty.
 .TP
 .I /proc/sys/fs
-This contains the subdirectories
-.IR binfmt_misc ", " epoll ", " inotify ", and " mqueue ,
-and files
-.IR dentry-state ", " dir-notify-enable ", " dquot-nr ", " file-max ", "
-.IR file-nr ", " inode-max ", " inode-nr ", " inode-state ", "
-.IR lease-break-time ", " leases-enable ", "
-.IR overflowgid ", " overflowuid ", "
-.IR suid_dumpable ", "
-.IR super-max ", and " super-nr .
+This directory contains the files and subdirectories for kernel variables
+related to file systems.
 .TP
 .I /proc/sys/fs/binfmt_misc
 Documentation for files in this directory can be found
@@ -1926,6 +1915,20 @@ When one of these file systems is mounted
 with writes enabled, any UID or GID that would exceed 65535 is translated
 to the overflow value before being written to disk.
 .TP
+.IR /proc/sys/fs/pipe-max-size " (since Linux 2.6.35)"
+The value in this file defines an upper limit for raising the capacity
+of a pipe using the
+.BR fcntl (2)
+.B F_SETPIPE_SZ
+operation.
+This limit applies only to unprivileged processes.
+The default value for this file is 1,048,576.
+The value assigned to this file may be rounded upward,
+to reflect the value actually employed for a convenient implementation.
+To determine the rounded-up value,
+display the contents of this file after assigning a value to it.
+The minimum value that can be assigned to this file is the system page size.
+.TP
 .IR /proc/sys/fs/suid_dumpable " (since Linux 2.6.13)"
 .\" The following is based on text from Documentation/sysctl/kernel.txt
 The value in this file determines whether core dump files are
@@ -2382,19 +2385,71 @@ user should run
 .BR sync (8)
 first.
 .TP
-.IR /proc/sys/vm/swappiness
-.\" The following is from Documentation/sysctl/vm.txt
-The value in this file controls how aggressively the kernel will swap
-memory pages.
-Higher values increase agressiveness, lower values
-descrease aggressiveness.
-The default value is 60.
-.TP
 .IR /proc/sys/vm/legacy_va_layout " (since Linux 2.6.9)"
 .\" The following is from Documentation/filesystems/proc.txt
 If nonzero, this disables the new 32-bit memory-mapping layout;
 the kernel will use the legacy (2.4) layout for all processes.
 .TP
+.IR /proc/sys/vm/memory_failure_early_kill " (since Linux 2.6.32)"
+.\" The following is based on the text in Documentation/sysctl/vm.txt
+Control how to kill processes when an uncorrected memory error
+(typically a 2-bit error in a memory module)
+that cannot be handled by the kernel
+is detected in the background by hardware.
+In some cases (like the page still having a valid copy on disk),
+the kernel will handle the failure
+transparently without affecting any applications.
+But if there is no other up-to-date copy of the data,
+it will kill processes to prevent any data corruptions from propagating.
+
+The file has one of the following values:
+.RS
+.IP 1: 4
+Kill all processes that have the corrupted-and-not-reloadable page mapped
+as soon as the corruption is detected.
+Note this is not supported for a few types of pages, like kernel internally
+allocated data or the swap cache, but works for the majority of user pages.
+.IP 0: 4
+Only unmap the corrupted page from all processes and only kill a process
+who tries to access it.
+.RE
+.IP
+The kill is performed using a
+.B SIGBUS
+signal with
+.I si_code
+set to
+.BR BUS_MCEERR_AO .
+Processes can handle this if they want to; see
+.BR sigaction (2)
+for more details.
+
+This feature is only active on architectures/platforms with advanced machine
+check handling and depends on the hardware capabilities.
+
+Applications can override the
+.I memory_failure_early_kill
+setting individually with the
+.BR prctl (2)
+.B PR_MCE_KILL
+operation.
+.IP
+Only present if the kernel was configured with
+.BR CONFIG_MEMORY_FAILURE .
+.TP
+.IR /proc/sys/vm/memory_failure_recovery " (since Linux 2.6.32)"
+.\" The following is based on the text in Documentation/sysctl/vm.txt
+Enable memory failure recovery (when supported by the platform)
+.RS
+.IP 1: 4
+Attempt recovery.
+.IP 0: 4
+Always panic on a memory failure.
+.RE
+.IP
+Only present if the kernel was configured with
+.BR CONFIG_MEMORY_FAILURE .
+.TP
 .IR /proc/sys/vm/oom_dump_tasks " (since Linux 2.6.25)"
 .\" The following is from Documentation/sysctl/vm.txt
 Enables a system-wide task dump (excluding kernel threads) to be
@@ -2503,6 +2558,14 @@ The default value is 0.
 1 and 2 are for failover of clustering.
 Select either according to your policy of failover.
 .TP
+.IR /proc/sys/vm/swappiness
+.\" The following is from Documentation/sysctl/vm.txt
+The value in this file controls how aggressively the kernel will swap
+memory pages.
+Higher values increase agressiveness, lower values
+decrease aggressiveness.
+The default value is 60.
+.TP
 .IR /proc/sysrq-trigger " (since Linux 2.4.21)"
 Writing a character to this file triggers the same SysRq function as
 typing ALT-SysRq-<character> (see the description of
index 4050393..f97b677 100644 (file)
@@ -3,7 +3,7 @@
 .\" @(#)rpc.5  2.2 88/08/03 4.0 RPCSRC; from 1.4 87/11/27 SMI;
 .TH RPC 5  1985-09-26 "" "Linux Programmer's Manual"
 .SH NAME
-rpc \- rpc program number data base
+rpc \- RPC program number data base
 .SH SYNOPSIS
 .B /etc/rpc
 .SH DESCRIPTION
index 3f272a4..7aee726 100644 (file)
@@ -31,7 +31,7 @@
 .\" Thu Jan 11 12:14:41 1996 Austin Donnelly  <and1000@cam.ac.uk>
 .\"   * Merged two services(5) manpages
 .\"
-.TH SERVICES 5 2008-09-23 "Linux" "Linux Programmer's Manual"
+.TH SERVICES 5 2010-05-22 "Linux" "Linux Programmer's Manual"
 .SH NAME
 services \- Internet network services list
 .SH DESCRIPTION
@@ -120,7 +120,7 @@ and
 .TP
 .I aliases
 is an optional space or tab separated list of other names for this
-service (but see the BUGS section below).
+service.
 Again, the names are case
 sensitive.
 .PP
index c09c055..06a7fb5 100644 (file)
@@ -42,7 +42,7 @@
 .\"     capability, then we must also set the effective flag for all
 .\"     other capabilities where the permitted or inheritable bit is set.
 .\"
-.TH CAPABILITIES 7 2010-01-31 "Linux" "Linux Programmer's Manual"
+.TH CAPABILITIES 7 2010-06-19 "Linux" "Linux Programmer's Manual"
 .SH NAME
 capabilities \- overview of Linux capabilities
 .SH DESCRIPTION
@@ -287,7 +287,12 @@ perform
 and
 .B KEYCTL_SETPERM
 .BR keyctl (2)
-operations.
+operations;
+.IP *
+perform
+.BR madvise (2)
+.B MADV_HWPOISON
+operation.
 .RE
 .PD
 .TP
@@ -358,7 +363,10 @@ Use
 .TP
 .B CAP_SYS_PTRACE
 Trace arbitrary processes using
-.BR ptrace (2)
+.BR ptrace (2);
+apply
+.BR get_robust_list (2)
+to arbitrary processes.
 .TP
 .B CAP_SYS_RAWIO
 Perform I/O port operations
@@ -395,6 +403,11 @@ limit for a System V message queue above the limit in
 .BR msgop (2)
 and
 .BR msgctl (2)).
+.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 .
 .RE
 .PD
 .TP
index 6977193..cddfafe 100644 (file)
@@ -429,7 +429,7 @@ Special defines (such as the standards macro).
 .Xr man 7 ,
 .Xr man-pages 7
 .Sh COLOPHON
-This page is part of release 3.24 of the Linux
+This page is part of release 3.25 of the Linux
 .Em man-pages
 project.
 A description of the project,
index e9e9a8e..2e398e7 100644 (file)
@@ -2944,7 +2944,7 @@ and certainly should be able to.
 .Xr groff_mdoc 7 ,
 .Xr mdoc 7
 .Sh COLOPHON
-This page is part of release 3.24 of the Linux
+This page is part of release 3.25 of the Linux
 .Em man-pages
 project.
 A description of the project,
index ef354fe..312e4bd 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_OVERVIEW 7 2009-02-25 "Linux" "Linux Programmer's Manual"
+.TH SEM_OVERVIEW 7 2010-05-22 "Linux" "Linux Programmer's Manual"
 .SH NAME
 sem_overview \- Overview of POSIX semaphores
 .SH DESCRIPTION
@@ -88,7 +88,7 @@ A thread-shared semaphore is placed in an area of memory shared
 between by the threads of a process, for example, a global variable.
 A process-shared semaphore must be placed in a shared memory region
 (e.g., a System V shared memory segment created using
-.BR semget (2),
+.BR shmget (2),
 or a POSIX shared memory object built created using
 .BR shm_open (3)).
 
index bb38c75..d67c893 100644 (file)
@@ -41,7 +41,7 @@
 .\"     Added section on stop/cont signals interrupting syscalls.
 .\" 2008-10-05, mtk: various additions
 .\"
-.TH SIGNAL 7  2010-02-03 "Linux" "Linux Programmer's Manual"
+.TH SIGNAL 7  2010-06-12 "Linux" "Linux Programmer's Manual"
 .SH NAME
 signal \- overview of signals
 .SH DESCRIPTION
@@ -69,8 +69,12 @@ Default action is to continue the process if it is currently stopped.
 .PP
 A process can change the disposition of a signal using
 .BR sigaction (2)
-or (less portably)
+or
 .BR signal (2).
+(The latter is less portable when establishing a signal handler;
+see
+.BR signal (2)
+for details.)
 Using these system calls, a process can elect one of the
 following behaviors to occur on delivery of the signal:
 perform the default action; ignore the signal;
@@ -441,11 +445,8 @@ signals; see
 for further details.
 .SS "Async-signal-safe functions"
 .PP
-A signal handling routine established by
-.BR sigaction (2)
-or
-.BR signal (2)
-must be very careful, since processing elsewhere may be interrupted
+A signal handler function must be very careful,
+since processing elsewhere may be interrupted
 at some arbitrary point in the execution of the program.
 POSIX has the concept of "safe function".
 If a signal interrupts the execution of an unsafe function, and
index f109b89..7f9c7cf 100644 (file)
 .\" Modified, 27 May 2004, Michael Kerrisk <mtk.manpages@gmail.com>
 .\"     Added notes on capability requirements
 .\"    A few small grammar fixes
+.\" 2010-06-13 Jan Engelhardt <jengelh@medozas.de>
+.\"    Documented SO_DOMAIN and SO_PROTOCOL.
 .\" FIXME
 .\" The following are not yet documented:
 .\"    SO_PEERNAME
 .\"    SO_TIMESTAMPNS
 .\"    SO_MARK
-.\"    SO_TIMESTAMPING
-.\"    SO_PROTOCOL (2.6.32)
-.\"    SO_DOMAIN (2.6.32)
+.\"    SO_TIMESTAMPING (2.6.30)
 .\"    SO_RXQ_OVFL (2.6.33)
 .\"
-.TH SOCKET 7 2008-12-03 Linux "Linux Programmer's Manual"
+.TH SOCKET 7 2010-06-13 Linux "Linux Programmer's Manual"
 .SH NAME
 socket \- Linux socket interface
 .SH SYNOPSIS
@@ -207,6 +207,10 @@ and read with
 with the socket level set to
 .B SOL_SOCKET
 for all sockets:
+.\" FIXME
+.\" In the list below, the text used to describe argument types
+.\" for each socket option should be more consistent
+.\"
 .\" SO_ACCEPTCONN is in POSIX.1-2001, and its origin is explained in
 .\" W R Stevens, UNPv1
 .TP
@@ -216,9 +220,7 @@ to accept connections with
 .BR listen (2).
 The value 0 indicates that this is not a listening socket,
 the value 1 indicates that this is a listening socket.
-Can only be read
-with
-.BR getsockopt (2).
+This socket option is read-only.
 .TP
 .B SO_BINDTODEVICE
 Bind this socket to a particular device like \(lqeth0\(rq,
@@ -264,10 +266,17 @@ Only allowed for processes with the
 .B CAP_NET_ADMIN
 capability or an effective user ID of 0.
 .TP
+.BR SO_DOMAIN " (since Linux 2.6.32)"
+Retrieves the socket domain as an integer, returning a value such as
+.BR AF_INET6 .
+See
+.BR socket (2)
+for details.
+This socket option is read-only.
+.TP
 .B SO_ERROR
 Get and clear the pending socket error.
-Only valid as a
-.BR getsockopt (2).
+This socket option is read-only.
 Expects an integer.
 .TP
 .B SO_DONTROUTE
@@ -348,8 +357,7 @@ or
 Argument is a
 .I ucred
 structure.
-Only valid as a
-.BR getsockopt (2).
+This socket option is read-only.
 .TP
 .B SO_PRIORITY
 Set the protocol-defined priority for all packets to be sent on
@@ -364,6 +372,14 @@ Setting a priority outside the range 0 to 6 requires the
 .B CAP_NET_ADMIN
 capability.
 .TP
+.BR SO_PROTOCOL " (since Linux 2.6.32)"
+Retrieves the socket protocol as an integer, returning a value such as
+.BR IPPROTO_SCTP .
+See
+.BR socket (2)
+for details.
+This socket option is read-only.
+.TP
 .B SO_RCVBUF
 Sets or gets the maximum socket receive buffer in bytes.
 The kernel doubles this value (to allow space for bookkeeping overhead)
@@ -504,11 +520,9 @@ See
 for details on control messages.
 .TP
 .B SO_TYPE
-Gets the socket type as an integer (like
+Gets the socket type as an integer (e.g.,
 .BR SOCK_STREAM ).
-Can only be read
-with
-.BR getsockopt (2).
+This socket option is read-only.
 .SS Signals
 When writing onto a connection-oriented socket that has been shut down
 (by the local or the remote end)
index 53a91db..c2e7003 100644 (file)
@@ -5,7 +5,7 @@
 .\" of the modification is added to the header.
 .\" $Id: udp.7,v 1.7 2000/01/22 01:55:05 freitag Exp $
 .\"
-.TH UDP  7 2009-09-30 "Linux" "Linux Programmer's Manual"
+.TH UDP  7 2010-06-13 "Linux" "Linux Programmer's Manual"
 .SH NAME
 udp \- User Datagram Protocol for IPv4
 .SH SYNOPSIS
@@ -205,6 +205,19 @@ The correct syntax is:
 Gets a pointer to an integer as argument.
 Returns the size of the next pending datagram in the integer in bytes,
 or 0 when no datagram is pending.
+.B Warning:
+Using
+.BR FIONREAD ,
+it is impossible to distinguish the case where no datagram is pending
+from the case where the next pending datagram contains zero bytes of data.
+It is safer to use
+.BR select (2),
+.BR poll (2),
+or
+.BR epoll (7)
+to distinguish these cases.
+.\" See http://www.securiteam.com/unixfocus/5KP0I15IKO.html
+.\" "GNUnet DoS (UDP Socket Unreachable)", 14 May 2006
 .TP
 .BR TIOCOUTQ " (" SIOCOUTQ )
 Returns the number of data bytes in the local send queue.
index 39c4afd..6102356 100644 (file)
-○:LDP man-pages:3.24:2007/11/15:intro:1:2008/02/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2000/10/30:ldd:1:2002/02/14::ysato@h4.dion.ne.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2008/11/14:time:1:2008/11/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/11/27:_Exit:2:_exit:2:
-@:LDP man-pages:3.24:2009/07/18:__clone2:2:clone:2:
-○:LDP man-pages:3.24:2008/11/27:_exit:2:2001/12/14::ysato@h4.dion.ne.jp:Yuichi SATO:
-@:LDP man-pages:3.24:1995/06/10:_llseek:2:llseek:2:
-@:LDP man-pages:3.24:2008/12/05:_newselect:2:select:2:
-○:LDP man-pages:3.24:2007/12/19:_syscall:2:2008/02/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/11/20:_sysctl:2:sysctl:2:
-○:LDP man-pages:3.24:2009/02/23:accept:2:2008/12/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2009/02/23:accept4:2:accept:2:
-○:LDP man-pages:3.24:2007/07/10:access:2:2007/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/06/16:acct:2:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
-×:LDP man-pages:3.24:2010/02/25:add_key:2:::::
-○:LDP man-pages:3.24:2004/05/27:adjtimex:2:2006/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2007/07/05:afs_syscall:2:unimplemented:2:
-○:LDP man-pages:3.24:2008/06/12:alarm:2:1997/02/22::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-○:LDP man-pages:3.24:2007/05/31:alloc_hugepages:2:2007/06/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2007/12/26:arch_prctl:2:2005/11/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2004/06/17:bdflush:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2007/12/28:bind:2:2007/06/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2007/07/05:break:2:unimplemented:2:
-○:LDP man-pages:3.24:2008/06/18:brk:2:2007/02/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:1995/06/27:cacheflush:2:2005/10/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2009/01/26:capget:2:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2009/01/26:capset:2:capget:2:
-○:LDP man-pages:3.24:2007/07/26:chdir:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2008/05/26:chmod:2:2005/01/14::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2008/06/16:chown:2:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.24:2008/06/16:chown32:2:chown:2:
-○:LDP man-pages:3.24:2008/06/23:chroot:2:2005/01/14::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2010/02/03:clock_getres:2:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.24:2010/02/03:clock_gettime:2:clock_getres:2:
-○:LDP man-pages:3.24:2008/07/09:clock_nanosleep:2:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2010/02/03:clock_settime:2:clock_getres:2:
-○:LDP man-pages:3.24:2009/07/18:clone:2:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2009/07/18:clone2:2:clone:2:
-○:LDP man-pages:3.24:2007/12/28:close:2:2007/10/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/12/03:connect:2:2005/10/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2009/09/20:creat:2:open:2:
-○:LDP man-pages:3.24:2007/06/03:create_module:2:2006/07/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:0000/00/00:delete_module:2:2006/07/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/10/09:dup:2:2005/09/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/10/09:dup2:2:dup:2:
-@:LDP man-pages:3.24:2008/10/09:dup3:2:dup:2:
-○:LDP man-pages:3.24:2009/01/17:epoll_create:2:2009/03/14::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.24:2009/01/17:epoll_create1:2:epoll_create:2:
-○:LDP man-pages:3.24:2009/01/17:epoll_ctl:2:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2009/01/17:epoll_pwait:2:epoll_wait:2:
-○:LDP man-pages:3.24:2009/01/17:epoll_wait:2:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2009/01/26:eventfd:2:2008/11/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2009/01/26:eventfd2:2:eventfd:2:
-○:LDP man-pages:3.24:2010/01/06:execve:2:2008/04/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/11/27:exit:2:_exit:2:
-○:LDP man-pages:3.24:2008/11/27:exit_group:2:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2009/12/13:faccessat:2:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2003/02/14:fadvise64:2:posix_fadvise:2:
-@:LDP man-pages:3.24:2003/02/14:fadvise64_64:2:posix_fadvise:2:
-○:LDP man-pages:3.24:2009/03/13:fallocate:2:2007/10/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2007/07/26:fchdir:2:chdir:2:
-@:LDP man-pages:3.24:2008/05/26:fchmod:2:chmod:2:
-○:LDP man-pages:3.24:2009/12/13:fchmodat:2:2006/12/28::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.24:2008/06/16:fchown:2:chown:2:
-@:LDP man-pages:3.24:2008/06/16:fchown32:2:fchown:2:
-○:LDP man-pages:3.24:2009/12/13:fchownat:2:2006/12/28::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2009/10/17:fcntl:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2009/10/17:fcntl64:2:fcntl:2:
-@:LDP man-pages:3.24:2008/11/07:fdatasync:2:fsync:2:
-@:LDP man-pages:3.24:2001/12/01:fgetxattr:2:getxattr:2:
-@:LDP man-pages:3.24:2001/12/01:flistxattr:2:listxattr:2:
-○:LDP man-pages:3.24:2009/07/25:flock:2:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2009/04/27:fork:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2007/05/31:free_hugepages:2:alloc_hugepages:2:
-@:LDP man-pages:3.24:2001/12/01:fremovexattr:2:removexattr:2:
-@:LDP man-pages:3.24:2001/12/31:fsetxattr:2:setxattr:2:
-@:LDP man-pages:3.24:2009/09/30:fstat:2:stat:2:
-@:LDP man-pages:3.24:2009/01/22:fstat64:2:fstat:2:
-○:LDP man-pages:3.24:2009/12/13:fstatat:2:2006/12/28::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.24:2009/12/13:fstatat64:2:fstatat:2:
-@:LDP man-pages:3.24:2004/06/23:fstatfs:2:statfs:2:
-@:LDP man-pages:3.24:2004/06/23:fstatfs64:2:fstatfs:2:
-@:LDP man-pages:3.24:2003/08/22:fstatvfs:2:statvfs:2:
-○:LDP man-pages:3.24:2008/11/07:fsync:2:2007/10/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2009/02/28:ftruncate:2:truncate:2:
-@:LDP man-pages:3.24:2009/02/28:ftruncate64:2:ftruncate:2:
-○:LDP man-pages:3.24:2008/11/27:futex:2:2007/02/08::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2009/12/13:futimesat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:0000/00/00:get_kernel_syms:2:2006/07/31::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/08/15:get_mempolicy:2:2008/11/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/11/27:get_thread_area:2:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2009/03/15:getcontext:2:2001/12/15::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-×:LDP man-pages:3.24:2008/06/03:getcpu:2:::::
-@:LDP man-pages:3.24:2009/03/31:getcwd:2:getcwd:3:
-○:LDP man-pages:3.24:2009/07/04:getdents:2:2009/03/05::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.24:2009/07/04:getdents64:2:getdents:2:
-○:LDP man-pages:3.24:2009/09/27:getdomainname:2:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2007/07/26:getdtablesize:2:2007/01/14::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.24:1993/07/23:getegid:2:getgid:2:
-@:LDP man-pages:3.24:1993/07/23:getegid32:2:getegid:2:
-@:LDP man-pages:3.24:1993/07/23:geteuid:2:getuid:2:
-@:LDP man-pages:3.24:1993/07/23:geteuid32:2:geteuid:2:
-○:LDP man-pages:3.24:1993/07/23:getgid:2:1997/06/26::suto@av.crl.sony.co.jp:SUTO, Mitsuaki:
-@:LDP man-pages:3.24:1993/07/23:getgid32:2:getgid:2:
-○:LDP man-pages:3.24:2008/06/03:getgroups:2:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/06/03:getgroups32:2:getgroups:2:
-@:LDP man-pages:3.24:2009/01/13:gethostid:2:gethostid:3:
-○:LDP man-pages:3.24:2008/11/27:gethostname:2:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2009/03/15:getitimer:2:2007/10/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2007/07/26:getpagesize:2:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/12/03:getpeername:2:2005/02/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2009/09/20:getpgid:2:setpgid:2:
-@:LDP man-pages:3.24:2009/09/20:getpgrp:2:setpgid:2:
-○:LDP man-pages:3.24:2008/09/23:getpid:2:1997/06/27::suto@av.crl.sony.co.jp:SUTO, Mitsuaki:
-@:LDP man-pages:3.24:2007/07/05:getpmsg:2:unimplemented:2:
-@:LDP man-pages:3.24:2008/09/23:getppid:2:getpid:2:
-○:LDP man-pages:3.24:2008/05/29:getpriority:2:2005/10/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2007/12/28:getresgid:2:getresuid:2:
-@:LDP man-pages:3.24:2007/12/28:getresgid32:2:getresgid:2:
-○:LDP man-pages:3.24:2007/12/28:getresuid:2:2003/11/13::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.24:2007/12/28:getresuid32:2:getresuid:2:
-○:LDP man-pages:3.24:2008/10/06:getrlimit:2:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2009/08/25:getrusage:2:2008/11/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/12/05:getsid:2:2002/02/03::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.24:2008/12/03:getsockname:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2008/12/03:getsockopt:2:2008/07/24::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.24:2008/04/14:gettid:2:2003/09/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2009/03/25:gettimeofday:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:1993/07/23:getuid:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.24:1993/07/23:getuid32:2:getuid:2:
-○:LDP man-pages:3.24:2001/12/01:getxattr:2:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2007/07/05:gtty:2:unimplemented:2:
-○:LDP man-pages:3.24:1994/08/21:idle:2:2000/01/14::argrath@yo.rim.or.jp:Kentaro Shirakata:
-@:LDP man-pages:3.24:1995/11/29:inb:2:outb:2:
-@:LDP man-pages:3.24:1995/11/29:inb_p:2:outb:2:
-○:LDP man-pages:3.24:0000/00/00:init_module:2:2006/07/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:1995/11/29:inl:2:outb:2:
-@:LDP man-pages:3.24:1995/11/29:inl_p:2:outb:2:
-○:LDP man-pages:3.24:2006/02/07:inotify_add_watch:2:2006/08/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/10/10:inotify_init:2:2006/08/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/10/10:inotify_init1:2:inotify_init:2:
-○:LDP man-pages:3.24:2006/02/07:inotify_rm_watch:2:2006/08/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:1995/11/29:insb:2:outb:2:
-@:LDP man-pages:3.24:1995/11/29:insl:2:outb:2:
-@:LDP man-pages:3.24:1995/11/29:insw:2:outb:2:
-○:LDP man-pages:3.24:2010/02/03:intro:2:2006/04/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:1995/11/29:inw:2:outb:2:
-@:LDP man-pages:3.24:1995/11/29:inw_p:2:outb:2:
-○:LDP man-pages:3.24:2008/06/18:io_cancel:2:2003/03/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/06/18:io_destroy:2:2003/03/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/07/04:io_getevents:2:2003/03/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/06/18:io_setup:2:2003/03/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/06/18:io_submit:2:2003/03/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2000/09/21:ioctl:2:2005/02/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2007/12/29:ioctl_list:2:2004/06/13::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2007/06/15:ioperm:2:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2004/12/26:iopl:2:2005/02/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/07/09:ioprio_get:2:ioprio_set:2:
-○:LDP man-pages:3.24:2008/07/09:ioprio_set:2:2007/01/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2007/06/28:ipc:2:1997/02/23::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-×:LDP man-pages:3.24:2010/02/25:keyctl:2:::::
-○:LDP man-pages:3.24:2009/09/15:kill:2:2005/12/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2007/07/26:killpg:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.24:2008/06/16:lchown:2:chown:2:
-@:LDP man-pages:3.24:2008/06/16:lchown32:2:lchown:2:
-@:LDP man-pages:3.24:2001/12/01:lgetxattr:2:getxattr:2:
-○:LDP man-pages:3.24:2008/08/21:link:2:2005/05/12::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2009/12/13:linkat:2:2007/01/21::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/11/20:listen:2:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.24:2001/12/01:listxattr:2:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2001/12/01:llistxattr:2:listxattr:2:
-○:LDP man-pages:3.24:1995/06/10:llseek:2:2005/01/14::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.24:2007/07/05:lock:2:unimplemented:2:
-○:LDP man-pages:3.24:2004/06/17:lookup_dcookie:2:2005/02/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2001/12/01:lremovexattr:2:removexattr:2:
-○:LDP man-pages:3.24:2001/09/24:lseek:2:2006/03/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2001/12/31:lsetxattr:2:setxattr:2:
-@:LDP man-pages:3.24:2009/09/30:lstat:2:stat:2:
-@:LDP man-pages:3.24:2009/01/22:lstat64:2:lstat:2:
-○:LDP man-pages:3.24:2008/04/22:madvise:2:2007/01/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2007/07/05:madvise1:2:unimplemented:2:
-○:LDP man-pages:3.24:2008/08/15:mbind:2:2008/11/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/04/22:mincore:2:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/05/13:mkdir:2:2008/10/08::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.24:2009/12/13:mkdirat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2008/12/01:mknod:2:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2009/12/13:mknodat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2008/09/25:mlock:2:2006/02/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/09/25:mlockall:2:mlock:2:
-○:LDP man-pages:3.24:2009/09/26:mmap:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/04/22:mmap2:2:2007/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2007/06/01:modify_ldt:2:2007/06/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2009/06/26:mount:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/10/06:move_pages:2:2008/11/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/08/06:mprotect:2:2007/06/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2007/07/05:mpx:2:unimplemented:2:
-○:LDP man-pages:3.24:2007/06/01:mq_getsetattr:2:2006/07/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2009/09/15:mq_notify:2:mq_notify:3:
-@:LDP man-pages:3.24:2009/02/20:mq_open:2:mq_open:3:
-@:LDP man-pages:3.24:2010/02/25:mq_timedreceive:2:mq_receive:3:
-@:LDP man-pages:3.24:2010/02/25:mq_timedsend:2:mq_send:3:
-@:LDP man-pages:3.24:2006/02/25:mq_unlink:2:mq_unlink:3:
-○:LDP man-pages:3.24:2005/09/13:mremap:2:2006/04/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/08/06:msgctl:2:2005/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2004/05/27:msgget:2:2005/03/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/04/23:msgop:2:2006/03/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/04/23:msgrcv:2:msgop:2:
-@:LDP man-pages:3.24:2008/04/23:msgsnd:2:msgop:2:
-○:LDP man-pages:3.24:2008/04/22:msync:2:2008/07/24::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.24:2008/09/25:munlock:2:mlock:2:
-@:LDP man-pages:3.24:2008/09/25:munlockall:2:mlock:2:
-@:LDP man-pages:3.24:2009/09/26:munmap:2:mmap:2:
-○:LDP man-pages:3.24:2009/01/19:nanosleep:2:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:1997/07/16:nfsservctl:2:1997/08/30::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-○:LDP man-pages:3.24:2007/07/26:nice:2:2005/10/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2009/09/30:oldfstat:2:stat:2:
-@:LDP man-pages:3.24:2009/09/30:oldlstat:2:stat:2:
-@:LDP man-pages:3.24:2008/12/03:oldolduname:2:uname:2:
-@:LDP man-pages:3.24:2009/09/30:oldstat:2:stat:2:
-@:LDP man-pages:3.24:2008/12/03:olduname:2:uname:2:
-○:LDP man-pages:3.24:2009/09/20:open:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2009/12/13:openat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:1995/11/29:outb:2:2005/10/30::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.24:1995/11/29:outb_p:2:outb:2:
-@:LDP man-pages:3.24:1995/11/29:outl:2:outb:2:
-@:LDP man-pages:3.24:1995/11/29:outl_p:2:outb:2:
-@:LDP man-pages:3.24:1995/11/29:outsb:2:outb:2:
-@:LDP man-pages:3.24:1995/11/29:outsl:2:outb:2:
-@:LDP man-pages:3.24:1995/11/29:outsw:2:outb:2:
-@:LDP man-pages:3.24:1995/11/29:outw:2:outb:2:
-@:LDP man-pages:3.24:1995/11/29:outw_p:2:outb:2:
-@:LDP man-pages:3.24:2009/12/05:path_resolution:2:path_resolution:7:
-○:LDP man-pages:3.24:2008/10/06:pause:2:1997/06/27::suto@av.crl.sony.co.jp:SUTO, Mitsuaki:
-@:LDP man-pages:3.24:2003/07/14:pciconfig_iobase:2:pciconfig_read:2:
-○:LDP man-pages:3.24:2003/07/14:pciconfig_read:2:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.24:2003/07/14:pciconfig_write:2:pciconfig_read:2:
-○:LDP man-pages:3.24:2003/01/01:personality:2:2003/09/14::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.24:2009/09/15:pipe:2:2008/11/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2009/09/15:pipe2:2:pipe:2:
-○:LDP man-pages:3.24:2007/06/01:pivot_root:2:2000/06/14::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.24:2009/09/15:poll:2:2006/07/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2003/02/14:posix_fadvise:2:2007/02/08::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.24:2009/09/15:ppoll:2:poll:2:
-○:LDP man-pages:3.24:2008/07/16:prctl:2:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/12/03:pread:2:1999/06/25::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-@:LDP man-pages:3.24:2008/12/03:pread64:2:pread:2:
-@:LDP man-pages:3.24:2007/07/05:prof:2:unimplemented:2:
-@:LDP man-pages:3.24:2008/12/05:pselect:2:select:2:
-@:LDP man-pages:3.24:2008/12/05:pselect6:2:select:2:
-○:LDP man-pages:3.24:2009/03/30:ptrace:2:2007/05/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2007/07/05:putpmsg:2:unimplemented:2:
-@:LDP man-pages:3.24:2008/12/03:pwrite:2:pread:2:
-@:LDP man-pages:3.24:2008/12/03:pwrite64:2:pwrite:2:
-○:LDP man-pages:3.24:0000/00/00:query_module:2:2006/07/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2007/06/01:quotactl:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2009/02/23:read:2:2005/10/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2007/07/26:readahead:2:2005/02/27::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/10/02:readdir:2:1997/02/23::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-○:LDP man-pages:3.24:2007/07/26:readlink:2:2006/07/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2009/12/13:readlinkat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2002/10/17:readv:2:2007/06/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/02/11:reboot:2:2008/07/24::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.24:2009/03/10:recv:2:2008/12/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2009/03/10:recvfrom:2:recv:2:
-@:LDP man-pages:3.24:2009/03/10:recvmsg:2:recv:2:
-○:LDP man-pages:3.24:2008/04/22:remap_file_pages:2:2005/10/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2001/12/01:removexattr:2:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2009/03/30:rename:2:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2009/12/13:renameat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO:
-×:LDP man-pages:3.24:2010/02/25:request_key:2:::::
-○:LDP man-pages:3.24:2008/05/08:rmdir:2:2006/07/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2009/07/25:rt_sigaction:2:sigaction:2:
-@:LDP man-pages:3.24:2008/10/04:rt_sigpending:2:sigpending:2:
-@:LDP man-pages:3.24:2008/10/17:rt_sigprocmask:2:sigprocmask:2:
-@:LDP man-pages:3.24:2007/07/26:rt_sigqueueinfo:2:sigqueue:2:
-@:LDP man-pages:3.24:2008/06/26:rt_sigreturn:2:sigreturn:2:
-@:LDP man-pages:3.24:2005/09/15:rt_sigsuspend:2:sigsuspend:2:
-@:LDP man-pages:3.24:2008/10/04:rt_sigtimedwait:2:sigtimedwait:2:
-@:LDP man-pages:3.24:2008/06/18:sbrk:2:brk:2:
-○:LDP man-pages:3.24:2006/03/23:sched_get_priority_max:2:2006/04/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2006/03/23:sched_get_priority_min:2:sched_get_priority_max:2:
-@:LDP man-pages:3.24:2008/11/14:sched_getaffinity:2:sched_setaffinity:2:
-@:LDP man-pages:3.24:2006/03/23:sched_getparam:2:sched_setparam:2:
-@:LDP man-pages:3.24:2008/11/06:sched_getscheduler:2:sched_setscheduler:2:
-○:LDP man-pages:3.24:2007/04/06:sched_rr_get_interval:2:2007/06/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/11/14:sched_setaffinity:2:2008/12/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2006/03/23:sched_setparam:2:2006/04/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/11/06:sched_setscheduler:2:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/10/18:sched_yield:2:1997/02/23::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-@:LDP man-pages:3.24:2007/07/05:security:2:unimplemented:2:
-○:LDP man-pages:3.24:2008/12/05:select:2:2007/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2009/01/26:select_tut:2:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2009/09/27:semctl:2:2005/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2004/05/27:semget:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/10/04:semop:2:2007/05/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/10/04:semtimedop:2:semop:2:
-○:LDP man-pages:3.24:2009/02/23:send:2:2006/04/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2010/02/15:sendfile:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2010/02/15:sendfile64:2:sendfile:2:
-@:LDP man-pages:3.24:2009/02/23:sendmsg:2:send:2:
-@:LDP man-pages:3.24:2009/02/23:sendto:2:send:2:
-○:LDP man-pages:3.24:2008/08/15:set_mempolicy:2:2008/11/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/11/27:set_thread_area:2:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2004/09/10:set_tid_address:2:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.24:2009/03/15:setcontext:2:getcontext:2:
-@:LDP man-pages:3.24:2009/09/27:setdomainname:2:getdomainname:2:
-@:LDP man-pages:3.24:2009/10/17:setegid:2:seteuid:2:
-○:LDP man-pages:3.24:2009/10/17:seteuid:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/12/05:setfsgid:2:2005/02/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/12/05:setfsgid32:2:setfsgid:2:
-○:LDP man-pages:3.24:2008/12/05:setfsuid:2:2005/02/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/12/05:setfsuid32:2:setfsuid:2:
-○:LDP man-pages:3.24:2009/10/17:setgid:2:2003/02/14::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.24:2009/10/17:setgid32:2:setgid:2:
-@:LDP man-pages:3.24:2008/06/03:setgroups:2:getgroups:2:
-@:LDP man-pages:3.24:2008/06/03:setgroups32:2:setgroups:2:
-@:LDP man-pages:3.24:2009/01/13:sethostid:2:gethostid:3:
-@:LDP man-pages:3.24:2008/11/27:sethostname:2:gethostname:2:
-@:LDP man-pages:3.24:2009/03/15:setitimer:2:getitimer:2:
-○:LDP man-pages:3.24:2009/09/20:setpgid:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2009/09/20:setpgrp:2:setpgid:2:
-@:LDP man-pages:3.24:2008/05/29:setpriority:2:getpriority:2:
-@:LDP man-pages:3.24:2009/10/17:setregid:2:setreuid:2:
-@:LDP man-pages:3.24:2009/10/17:setregid32:2:setregid:2:
-@:LDP man-pages:3.24:2007/07/26:setresgid:2:setresuid:2:
-@:LDP man-pages:3.24:2007/07/26:setresgid32:2:setresgid:2:
-○:LDP man-pages:3.24:2007/07/26:setresuid:2:2005/11/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2007/07/26:setresuid32:2:setresuid:2:
-○:LDP man-pages:3.24:2009/10/17:setreuid:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2009/10/17:setreuid32:2:setreuid:2:
-@:LDP man-pages:3.24:2008/10/06:setrlimit:2:getrlimit:2:
-○:LDP man-pages:3.24:2008/12/03:setsid:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.24:2008/12/03:setsockopt:2:getsockopt:2:
-@:LDP man-pages:3.24:2009/03/25:settimeofday:2:gettimeofday:2:
-○:LDP man-pages:3.24:2010/02/21:setuid:2:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.24:2010/02/21:setuid32:2:setuid:2:
-○:LDP man-pages:3.24:2008/12/03:setup:2:2008/07/24::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.24:2001/12/31:setxattr:2:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2007/07/05:sgetmask:2:2007/10/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/06/03:shmat:2:shmop:2:
-○:LDP man-pages:3.24:2008/08/07:shmctl:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/06/03:shmdt:2:shmop:2:
-○:LDP man-pages:3.24:2006/05/02:shmget:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/06/03:shmop:2:2006/04/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/12/03:shutdown:2:2001/11/09::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.24:2009/07/25:sigaction:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/10/04:sigaltstack:2:2006/01/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/07/11:signal:2:2007/06/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2009/01/13:signalfd:2:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2009/01/13:signalfd4:2:signalfd:2:
-○:LDP man-pages:3.24:2008/10/04:sigpending:2:2005/12/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/10/17:sigprocmask:2:2005/10/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2007/07/26:sigqueue:2:2007/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/06/26:sigreturn:2:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2005/09/15:sigsuspend:2:2005/10/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/10/04:sigtimedwait:2:sigwaitinfo:2:
-○:LDP man-pages:3.24:2008/10/04:sigwaitinfo:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2009/01/19:socket:2:2008/11/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2007/06/28:socketcall:2:1997/03/03::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-○:LDP man-pages:3.24:2008/10/11:socketpair:2:2002/09/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2009/09/15:splice:2:2007/02/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-☆:LDP man-pages:2.67=>3.24:2007/12/20:spu_create:2:2007/10/23::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2007/11/25:spu_run:2:2007/10/23::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2007/07/05:ssetmask:2:sgetmask:2:
-○:LDP man-pages:3.24:2009/09/30:stat:2:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2009/09/30:stat64:2:stat:2:
-○:LDP man-pages:3.24:2004/06/23:statfs:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2004/06/23:statfs64:2:statfs:2:
-○:LDP man-pages:3.24:2003/08/22:statvfs:2:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2010/02/25:stime:2:2003/09/14::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.24:2007/07/05:stty:2:unimplemented:2:
-@:LDP man-pages:3.24:2007/06/22:swapoff:2:swapon:2:
-○:LDP man-pages:3.24:2007/06/22:swapon:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2007/07/26:symlink:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2009/12/13:symlinkat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2007/07/26:sync:2:2003/09/14::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.24:2010/01/17:sync_file_range:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2007/07/26:syscall:2:2002/08/20::ysato@h4.dion.ne.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2009/05/06:syscalls:2:2007/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/11/20:sysctl:2:1999/12/03::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-○:LDP man-pages:3.24:1995/08/09:sysfs:2:2001/06/02::ysato@h4.dion.ne.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2007/11/15:sysinfo:2:2000/09/23::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-○:LDP man-pages:3.24:2008/06/20:syslog:2:2008/04/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2009/09/15:tee:2:2007/02/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/10/01:tgkill:2:tkill:2:
-○:LDP man-pages:3.24:2010/02/25:time:2:1999/07/27::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-×:LDP man-pages:3.24:2009/02/20:timer_create:2:::::
-×:LDP man-pages:3.24:2009/02/20:timer_delete:2:::::
-×:LDP man-pages:3.24:2009/02/20:timer_getoverrun:2:::::
-※:LDP man-pages:3.24:2009/02/20:timer_gettime:2:timer_settime:2:
-×:LDP man-pages:3.24:2009/02/20:timer_settime:2:::::
-○:LDP man-pages:3.24:2009/03/10:timerfd_create:2:2008/11/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2009/03/10:timerfd_gettime:2:timerfd_create:2:
-@:LDP man-pages:3.24:2009/03/10:timerfd_settime:2:timerfd_create:2:
-○:LDP man-pages:3.24:2008/06/25:times:2:2008/02/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/10/01:tkill:2:2005/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2009/02/28:truncate:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2009/02/28:truncate64:2:truncate:2:
-@:LDP man-pages:3.24:2007/07/05:tuxcall:2:unimplemented:2:
-@:LDP man-pages:3.24:2008/10/06:ugetrlimit:2:getrlimit:2:
-○:LDP man-pages:3.24:2008/01/09:umask:2:2008/02/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2009/09/03:umount:2:2008/11/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2009/09/03:umount2:2:umount:2:
-○:LDP man-pages:3.24:2008/12/03:uname:2:2002/02/14::ysato@h4.dion.ne.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2007/07/05:unimplemented:2:2003/03/06::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-○:LDP man-pages:3.24:2004/06/23:unlink:2:2006/04/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2009/12/13:unlinkat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2008/11/20:unshare:2:2006/08/19::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2005/01/09:uselib:2:2005/04/21::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2003/08/04:ustat:2:2004/06/13::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2008/06/19:utime:2:2006/10/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-×:LDP man-pages:3.24:2009/12/13:utimensat:2:::::
-@:LDP man-pages:3.24:2008/06/19:utimes:2:utime:2:
-○:LDP man-pages:3.24:2009/06/21:vfork:2:2008/11/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2007/07/26:vhangup:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2009/02/20:vm86:2:2004/06/13::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.24:2009/02/20:vm86old:2:vm86:2:
-○:LDP man-pages:3.24:2009/09/15:vmsplice:2:2007/02/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2007/07/05:vserver:2:unimplemented:2:
-○:LDP man-pages:3.24:2009/04/21:wait:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/09/28:wait3:2:wait4:2:
-○:LDP man-pages:3.24:2008/09/28:wait4:2:2005/03/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2009/04/21:waitid:2:wait:2:
-@:LDP man-pages:3.24:2009/04/21:waitpid:2:wait:2:
-○:LDP man-pages:3.24:2009/02/23:write:2:2007/05/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2002/10/17:writev:2:readv:2:
-@:LDP man-pages:3.24:2008/11/20:CMSG_ALIGN:3:cmsg:3:
-@:LDP man-pages:3.24:2008/11/20:CMSG_FIRSTHDR:3:cmsg:3:
-@:LDP man-pages:3.24:2008/11/20:CMSG_NXTHDR:3:cmsg:3:
-@:LDP man-pages:3.24:2008/11/20:CMSG_SPACE:3:cmsg:3:
-※:LDP man-pages:3.24:2010/02/21:CPU_ALLOC:3:CPU_SET:3:
-※:LDP man-pages:3.24:2010/02/21:CPU_ALLOC_SIZE:3:CPU_SET:3:
-※:LDP man-pages:3.24:2010/02/21:CPU_AND:3:CPU_SET:3:
-※:LDP man-pages:3.24:2010/02/21:CPU_AND_S:3:CPU_SET:3:
-※:LDP man-pages:3.24:2010/02/21:CPU_CLR:3:CPU_SET:3:
-※:LDP man-pages:3.24:2010/02/21:CPU_CLR_S:3:CPU_SET:3:
-※:LDP man-pages:3.24:2010/02/21:CPU_COUNT:3:CPU_SET:3:
-※:LDP man-pages:3.24:2010/02/21:CPU_COUNT_S:3:CPU_SET:3:
-※:LDP man-pages:3.24:2010/02/21:CPU_EQUAL:3:CPU_SET:3:
-※:LDP man-pages:3.24:2010/02/21:CPU_EQUAL_S:3:CPU_SET:3:
-※:LDP man-pages:3.24:2010/02/21:CPU_FREE:3:CPU_SET:3:
-※:LDP man-pages:3.24:2010/02/21:CPU_ISSET:3:CPU_SET:3:
-※:LDP man-pages:3.24:2010/02/21:CPU_ISSET_S:3:CPU_SET:3:
-※:LDP man-pages:3.24:2010/02/21:CPU_OR:3:CPU_SET:3:
-※:LDP man-pages:3.24:2010/02/21:CPU_OR_S:3:CPU_SET:3:
-×:LDP man-pages:3.24:2010/02/21:CPU_SET:3:::::
-※:LDP man-pages:3.24:2010/02/21:CPU_SET_S:3:CPU_SET:3:
-※:LDP man-pages:3.24:2010/02/21:CPU_XOR:3:CPU_SET:3:
-※:LDP man-pages:3.24:2010/02/21:CPU_XOR_S:3:CPU_SET:3:
-※:LDP man-pages:3.24:2010/02/21:CPU_ZERO:3:CPU_SET:3:
-※:LDP man-pages:3.24:2010/02/21:CPU_ZERO_S:3:CPU_SET:3:
-@:LDP man-pages:3.24:2008/12/05:FD_CLR:3:select:2:
-@:LDP man-pages:3.24:2008/12/05:FD_ISSET:3:select:2:
-@:LDP man-pages:3.24:2008/12/05:FD_SET:3:select:2:
-@:LDP man-pages:3.24:2008/12/05:FD_ZERO:3:select:2:
-@:LDP man-pages:3.24:2007/07/26:HUGE_VAL:3:INFINITY:3:
-@:LDP man-pages:3.24:2007/07/26:HUGE_VALF:3:INFINITY:3:
-@:LDP man-pages:3.24:2007/07/26:HUGE_VALL:3:INFINITY:3:
-○:LDP man-pages:3.24:2007/07/26:INFINITY:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:1999/07/04:MB_CUR_MAX:3:1999/09/11::cz8cb01@linux.or.jp:HAYAKAWA Hitoshi:
-○:LDP man-pages:3.24:1999/07/04:MB_LEN_MAX:3:1999/09/11::cz8cb01@linux.or.jp:HAYAKAWA Hitoshi:
-@:LDP man-pages:3.24:2007/07/26:NAN:3:INFINITY:3:
-@:LDP man-pages:3.24:2001/12/16:__fbufsize:3:stdio_ext:3:
-@:LDP man-pages:3.24:2001/12/16:__flbf:3:stdio_ext:3:
-@:LDP man-pages:3.24:2001/12/16:__fpending:3:stdio_ext:3:
-@:LDP man-pages:3.24:2001/12/15:__fpurge:3:fpurge:3:
-@:LDP man-pages:3.24:2001/12/16:__freadable:3:stdio_ext:3:
-@:LDP man-pages:3.24:2001/12/16:__freading:3:stdio_ext:3:
-@:LDP man-pages:3.24:2001/12/16:__fsetlocking:3:stdio_ext:3:
-@:LDP man-pages:3.24:2001/12/16:__fwritable:3:stdio_ext:3:
-@:LDP man-pages:3.24:2001/12/16:__fwriting:3:stdio_ext:3:
-@:LDP man-pages:3.24:2002/07/20:__malloc_hook:3:malloc_hook:3:
-○:LDP man-pages:3.24:1997/03/08:__setfpucw:3:2000/09/20::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-@:LDP man-pages:3.24:2001/12/16:_flushlbf:3:stdio_ext:3:
-○:LDP man-pages:3.24:2007/07/26:a64l:3:2004/01/17::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2007/12/15:abort:3:1998/02/18::tyoshino@eng.toyo.ac.jp:Takashi Yoshino:
-○:LDP man-pages:3.24:2007/07/26:abs:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.24:2008/08/05:acos:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/05:acosf:3:acos:3:
-○:LDP man-pages:3.24:2008/08/05:acosh:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/05:acoshf:3:acosh:3:
-@:LDP man-pages:3.24:2008/08/05:acoshl:3:acosh:3:
-@:LDP man-pages:3.24:2008/08/05:acosl:3:acos:3:
-@:LDP man-pages:3.24:2009/09/15:addmntent:3:getmntent:3:
-○:LDP man-pages:3.24:2008/06/14:addseverity:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2008/06/22:adjtime:3:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2003/11/14:aio_cancel:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2003/11/14:aio_error:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2003/11/14:aio_fsync:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2003/11/14:aio_read:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2003/11/14:aio_return:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2003/11/14:aio_suspend:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2003/11/14:aio_write:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2008/01/24:alloca:3:2002/09/19::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.24:2009/02/10:alphasort:3:scandir:3:
-@:LDP man-pages:3.24:2007/05/18:argz:3:argz_add:3:
-○:LDP man-pages:3.24:2007/05/18:argz_add:3:2003/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2007/05/18:argz_add_sep:3:argz_add:3:
-@:LDP man-pages:3.24:2007/05/18:argz_append:3:argz_add:3:
-@:LDP man-pages:3.24:2007/05/18:argz_count:3:argz_add:3:
-@:LDP man-pages:3.24:2007/05/18:argz_create:3:argz_add:3:
-@:LDP man-pages:3.24:2007/05/18:argz_create_sep:3:argz_add:3:
-@:LDP man-pages:3.24:2007/05/18:argz_delete:3:argz_add:3:
-@:LDP man-pages:3.24:2007/05/18:argz_extract:3:argz_add:3:
-@:LDP man-pages:3.24:2007/05/18:argz_insert:3:argz_add:3:
-@:LDP man-pages:3.24:2007/05/18:argz_next:3:argz_add:3:
-@:LDP man-pages:3.24:2007/05/18:argz_replace:3:argz_add:3:
-@:LDP man-pages:3.24:2007/05/18:argz_stringify:3:argz_add:3:
-@:LDP man-pages:3.24:2010/02/25:asctime:3:ctime:3:
-@:LDP man-pages:3.24:2010/02/25:asctime_r:3:ctime:3:
-○:LDP man-pages:3.24:2008/08/05:asin:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/05:asinf:3:asin:3:
-○:LDP man-pages:3.24:2008/08/05:asinh:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/05:asinhf:3:asinh:3:
-@:LDP man-pages:3.24:2008/08/05:asinhl:3:asinh:3:
-@:LDP man-pages:3.24:2008/08/05:asinl:3:asin:3:
-○:LDP man-pages:3.24:2001/12/18:asprintf:3:2002/01/14::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.24:2002/08/25:assert:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.24:2002/08/25:assert_perror:3:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/12/02:atan:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/11/20:atan2:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/11/20:atan2f:3:atan2:3:
-@:LDP man-pages:3.24:2008/11/20:atan2l:3:atan2:3:
-@:LDP man-pages:3.24:2008/12/02:atanf:3:atan:3:
-○:LDP man-pages:3.24:2008/08/05:atanh:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/05:atanhf:3:atanh:3:
-@:LDP man-pages:3.24:2008/08/05:atanhl:3:atanh:3:
-@:LDP man-pages:3.24:2008/12/02:atanl:3:atan:3:
-○:LDP man-pages:3.24:2008/12/05:atexit:3:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:1993/03/29:atof:3:1998/02/18::tyoshino@eng.toyo.ac.jp:Takashi Yoshino:
-○:LDP man-pages:3.24:2007/07/26:atoi:3:2001/02/09::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.24:2007/07/26:atol:3:atoi:3:
-@:LDP man-pages:3.24:2007/07/26:atoll:3:atoi:3:
-@:LDP man-pages:3.24:2007/07/26:atoq:3:atoi:3:
-@:LDP man-pages:3.24:2008/07/17:auth_destroy:3:rpc:3:
-@:LDP man-pages:3.24:2008/07/17:authnone_create:3:rpc:3:
-@:LDP man-pages:3.24:2008/07/17:authunix_create:3:rpc:3:
-@:LDP man-pages:3.24:2008/07/17:authunix_create_default:3:rpc:3:
-○:LDP man-pages:3.24:2008/06/14:backtrace:3:2007/10/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/06/14:backtrace_symbols:3:backtrace:3:
-@:LDP man-pages:3.24:2008/06/14:backtrace_symbols_fd:3:backtrace:3:
-○:LDP man-pages:3.24:2009/03/30:basename:3:2007/05/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/08/06:bcmp:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.24:2009/03/15:bcopy:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
-※:LDP man-pages:3.24:2009/01/19:be16toh:3:endian:3:
-※:LDP man-pages:3.24:2009/01/19:be32toh:3:endian:3:
-※:LDP man-pages:3.24:2009/01/19:be64toh:3:endian:3:
-○:LDP man-pages:3.24:2008/12/03:bindresvport:3:2007/06/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2009/03/15:bsd_signal:3:2007/06/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2003/11/01:bsearch:3:2005/02/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2004/12/26:bstring:3:2003/11/13::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.24:2009/02/04:btowc:3:1999/09/11::cz8cb01@linux.or.jp:HAYAKAWA Hitoshi:
-○:LDP man-pages:3.24:1994/08/18:btree:3:1999/08/16::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.24:2009/01/15:byteorder:3:2005/11/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2002/12/31:bzero:3:2003/03/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2007/12/26:cabs:3:2003/07/23::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2007/12/26:cabsf:3:cabs:3:
-@:LDP man-pages:3.24:2007/12/26:cabsl:3:cabs:3:
-○:LDP man-pages:3.24:2007/12/26:cacos:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2007/12/26:cacosf:3:cacos:3:
-○:LDP man-pages:3.24:2008/08/11:cacosh:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/11:cacoshf:3:cacosh:3:
-@:LDP man-pages:3.24:2008/08/11:cacoshl:3:cacosh:3:
-@:LDP man-pages:3.24:2007/12/26:cacosl:3:cacos:3:
-@:LDP man-pages:3.24:2009/01/13:calloc:3:malloc:3:
-@:LDP man-pages:3.24:2008/07/17:callrpc:3:rpc:3:
-○:LDP man-pages:3.24:2005/07/14:canonicalize_file_name:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2007/12/26:carg:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2007/12/26:cargf:3:carg:3:
-@:LDP man-pages:3.24:2007/12/26:cargl:3:carg:3:
-○:LDP man-pages:3.24:2007/12/26:casin:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2007/12/26:casinf:3:casin:3:
-○:LDP man-pages:3.24:2007/12/26:casinh:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2007/12/26:casinhf:3:casinh:3:
-@:LDP man-pages:3.24:2007/12/26:casinhl:3:casinh:3:
-@:LDP man-pages:3.24:2007/12/26:casinl:3:casin:3:
-○:LDP man-pages:3.24:2007/12/26:catan:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2007/12/26:catanf:3:catan:3:
-○:LDP man-pages:3.24:2007/12/26:catanh:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2007/12/26:catanhf:3:catanh:3:
-@:LDP man-pages:3.24:2007/12/26:catanhl:3:catanh:3:
-@:LDP man-pages:3.24:2007/12/26:catanl:3:catan:3:
-@:LDP man-pages:3.24:2001/12/14:catclose:3:catopen:3:
-○:LDP man-pages:3.24:1998/08/09:catgets:3:1999/03/01::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.24:2001/12/14:catopen:3:2002/01/14::ysato@h4.dion.ne.jp:Yuichi SATO:
-@:LDP man-pages:3.24:2007/05/18:cbc_crypt:3:des_crypt:3:
-○:LDP man-pages:3.24:2008/08/05:cbrt:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/05:cbrtf:3:cbrt:3:
-@:LDP man-pages:3.24:2008/08/05:cbrtl:3:cbrt:3:
-○:LDP man-pages:3.24:2007/12/26:ccos:3:2003/07/28::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2007/12/26:ccosf:3:ccos:3:
-○:LDP man-pages:3.24:2007/12/26:ccosh:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2007/12/26:ccoshf:3:ccosh:3:
-@:LDP man-pages:3.24:2007/12/26:ccoshl:3:ccosh:3:
-@:LDP man-pages:3.24:2007/12/26:ccosl:3:ccos:3:
-○:LDP man-pages:3.24:2008/08/05:ceil:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/05:ceilf:3:ceil:3:
-@:LDP man-pages:3.24:2008/08/05:ceill:3:ceil:3:
-○:LDP man-pages:3.24:2007/12/26:cerf:3:2005/02/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2007/12/26:cerfc:3:cerf:3:
-@:LDP man-pages:3.24:2007/12/26:cerfcf:3:cerf:3:
-@:LDP man-pages:3.24:2007/12/26:cerfcl:3:cerf:3:
-@:LDP man-pages:3.24:2007/12/26:cerff:3:cerf:3:
-@:LDP man-pages:3.24:2007/12/26:cerfl:3:cerf:3:
-○:LDP man-pages:3.24:2007/12/26:cexp:3:2003/08/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2002/07/28:cexp2:3:2005/03/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2002/07/28:cexp2f:3:cexp2:3:
-@:LDP man-pages:3.24:2002/07/28:cexp2l:3:cexp2:3:
-@:LDP man-pages:3.24:2007/12/26:cexpf:3:cexp:3:
-@:LDP man-pages:3.24:2007/12/26:cexpl:3:cexp:3:
-@:LDP man-pages:3.24:2007/11/26:cfgetispeed:3:termios:3:
-@:LDP man-pages:3.24:2007/11/26:cfgetospeed:3:termios:3:
-@:LDP man-pages:3.24:2007/11/26:cfmakeraw:3:termios:3:
-○:LDP man-pages:3.24:2007/07/26:cfree:3:2004/08/14::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.24:2007/11/26:cfsetispeed:3:termios:3:
-@:LDP man-pages:3.24:2007/11/26:cfsetospeed:3:termios:3:
-@:LDP man-pages:3.24:2007/11/26:cfsetspeed:3:termios:3:
-○:LDP man-pages:3.24:2007/12/23:cimag:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2007/12/23:cimagf:3:cimag:3:
-@:LDP man-pages:3.24:2007/12/23:cimagl:3:cimag:3:
-○:LDP man-pages:3.24:2007/07/26:clearenv:3:2002/08/20::ysato@h4.dion.ne.jp:Yuichi SATO:
-@:LDP man-pages:3.24:2008/08/29:clearerr:3:ferror:3:
-@:LDP man-pages:3.24:2008/08/29:clearerr_unlocked:3:unlocked_stdio:3:
-@:LDP man-pages:3.24:2008/07/17:clnt_broadcast:3:rpc:3:
-@:LDP man-pages:3.24:2008/07/17:clnt_call:3:rpc:3:
-@:LDP man-pages:3.24:2008/07/17:clnt_control:3:rpc:3:
-@:LDP man-pages:3.24:2008/07/17:clnt_create:3:rpc:3:
-@:LDP man-pages:3.24:2008/07/17:clnt_destroy:3:rpc:3:
-@:LDP man-pages:3.24:2008/07/17:clnt_freeres:3:rpc:3:
-@:LDP man-pages:3.24:2008/07/17:clnt_geterr:3:rpc:3:
-@:LDP man-pages:3.24:2008/07/17:clnt_pcreateerror:3:rpc:3:
-@:LDP man-pages:3.24:2008/07/17:clnt_perrno:3:rpc:3:
-@:LDP man-pages:3.24:2008/07/17:clnt_perror:3:rpc:3:
-@:LDP man-pages:3.24:2008/07/17:clnt_spcreateerror:3:rpc:3:
-@:LDP man-pages:3.24:2008/07/17:clnt_sperrno:3:rpc:3:
-@:LDP man-pages:3.24:2008/07/17:clnt_sperror:3:rpc:3:
-@:LDP man-pages:3.24:2008/07/17:clntraw_create:3:rpc:3:
-@:LDP man-pages:3.24:2008/07/17:clnttcp_create:3:rpc:3:
-@:LDP man-pages:3.24:2008/07/17:clntudp_bufcreate:3:rpc:3:
-@:LDP man-pages:3.24:2008/07/17:clntudp_create:3:rpc:3:
-○:LDP man-pages:3.24:2008/08/28:clock:3:2007/06/01::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-×:LDP man-pages:3.24:2009/02/20:clock_getcpuclockid:3:::::
-@:LDP man-pages:3.24:2010/02/03:clock_getres:3:clock_getres:2:
-@:LDP man-pages:3.24:2010/02/03:clock_gettime:3:clock_getres:2:
-@:LDP man-pages:3.24:2010/02/03:clock_settime:3:clock_getres:2:
-○:LDP man-pages:3.24:2007/12/26:clog:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2002/07/28:clog10:3:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2002/07/28:clog10f:3:clog10:3:
-@:LDP man-pages:3.24:2002/07/28:clog10l:3:clog10:3:
-○:LDP man-pages:3.24:2002/07/28:clog2:3:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2002/07/28:clog2f:3:clog2:3:
-@:LDP man-pages:3.24:2002/07/28:clog2l:3:clog2:3:
-@:LDP man-pages:3.24:2007/12/26:clogf:3:clog:3:
-@:LDP man-pages:3.24:2007/12/26:clogl:3:clog:3:
-○:LDP man-pages:3.24:2008/09/23:closedir:3:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.24:2008/11/12:closelog:3:syslog:3:
-○:LDP man-pages:3.24:2008/11/20:cmsg:3:1999/08/17::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.24:2010/02/03:confstr:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2007/12/26:conj:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2007/12/26:conjf:3:conj:3:
-@:LDP man-pages:3.24:2007/12/26:conjl:3:conj:3:
-○:LDP man-pages:3.24:2008/08/05:copysign:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/05:copysignf:3:copysign:3:
-@:LDP man-pages:3.24:2008/08/05:copysignl:3:copysign:3:
-○:LDP man-pages:3.24:2009/02/04:cos:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2009/02/04:cosf:3:cos:3:
-○:LDP man-pages:3.24:2008/08/10:cosh:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/10:coshf:3:cosh:3:
-@:LDP man-pages:3.24:2008/08/10:coshl:3:cosh:3:
-@:LDP man-pages:3.24:2009/02/04:cosl:3:cos:3:
-○:LDP man-pages:3.24:2002/07/28:cpow:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2002/07/28:cpowf:3:cpow:3:
-@:LDP man-pages:3.24:2002/07/28:cpowl:3:cpow:3:
-○:LDP man-pages:3.24:2002/07/28:cproj:3:2005/03/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2002/07/28:cprojf:3:cproj:3:
-@:LDP man-pages:3.24:2002/07/28:cprojl:3:cproj:3:
-○:LDP man-pages:3.24:2007/12/26:creal:3:2003/07/28::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2007/12/26:crealf:3:creal:3:
-@:LDP man-pages:3.24:2007/12/26:creall:3:creal:3:
-○:LDP man-pages:3.24:2008/08/25:crypt:3:2008/10/08::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.24:2008/08/25:crypt_r:3:crypt:3:
-○:LDP man-pages:3.24:2007/12/26:csin:3:2003/07/28::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2007/12/26:csinf:3:csin:3:
-○:LDP man-pages:3.24:2007/12/26:csinh:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2007/12/26:csinhf:3:csinh:3:
-@:LDP man-pages:3.24:2007/12/26:csinhl:3:csinh:3:
-@:LDP man-pages:3.24:2007/12/26:csinl:3:csin:3:
-○:LDP man-pages:3.24:2008/08/11:csqrt:3:2003/08/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/11:csqrtf:3:csqrt:3:
-@:LDP man-pages:3.24:2008/08/11:csqrtl:3:csqrt:3:
-○:LDP man-pages:3.24:2007/12/26:ctan:3:2005/02/21::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2007/12/26:ctanf:3:ctan:3:
-○:LDP man-pages:3.24:2007/12/26:ctanh:3:2005/02/21::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2007/12/26:ctanhf:3:ctanh:3:
-@:LDP man-pages:3.24:2007/12/26:ctanhl:3:ctanh:3:
-@:LDP man-pages:3.24:2007/12/26:ctanl:3:ctan:3:
-○:LDP man-pages:3.24:2007/07/26:ctermid:3:1997/2/10::nagoya@cc.hit-u.ac.jp:NAGOYA Hiroaki:
-○:LDP man-pages:3.24:2010/02/25:ctime:3:2008/11/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2010/02/25:ctime_r:3:ctime:3:
-@:LDP man-pages:3.24:2008/06/29:cuserid:3:getlogin:3:
-○:LDP man-pages:3.24:2009/12/05:daemon:3:2002/01/14::ysato@h4.dion.ne.jp:Yuichi SATO:
-@:LDP man-pages:3.24:2010/02/25:daylight:3:tzset:3:
-@:LDP man-pages:3.24:1994/01/02:db:3:dbopen:3:
-○:LDP man-pages:3.24:1994/01/02:dbopen:3:1999/08/19::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.24:2007/05/18:des_crypt:3:2004/08/14::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.24:2007/05/18:des_setparity:3:des_crypt:3:
-○:LDP man-pages:3.24:2010/02/25:difftime:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/08/21:dirfd:3:2003/10/15::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.24:2009/03/30:dirname:3:basename:3:
-○:LDP man-pages:3.24:2007/07/26:div:3:2004/06/13::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2007/05/18:dl_iterate_phdr:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.24:2008/12/06:dladdr:3:dlopen:3:
-@:LDP man-pages:3.24:2008/12/06:dlclose:3:dlopen:3:
-@:LDP man-pages:3.24:2008/12/06:dlerror:3:dlopen:3:
-○:LDP man-pages:3.24:2008/12/06:dlopen:3:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/12/06:dlsym:3:dlopen:3:
-@:LDP man-pages:3.24:2008/12/06:dlvsym:3:dlopen:3:
-@:LDP man-pages:3.24:2008/11/07:dn_comp:3:resolver:3:
-@:LDP man-pages:3.24:2008/11/07:dn_expand:3:resolver:3:
-○:LDP man-pages:3.24:2008/06/14:dprintf:3:2002/01/14::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.24:2007/07/26:drand48:3:1997/01/20::tyoshino@eng.toyo.ac.jp:YOSHINO Takashi:
-○:LDP man-pages:3.24:2007/07/26:drand48_r:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.24:2009/02/04:drem:3:remainder:3:
-@:LDP man-pages:3.24:2009/02/04:dremf:3:remainder:3:
-@:LDP man-pages:3.24:2009/02/04:dreml:3:remainder:3:
-○:LDP man-pages:3.24:2007/07/26:dysize:3:2002/01/06::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-@:LDP man-pages:3.24:2007/07/26:eaccess:3:euidaccess:3:
-@:LDP man-pages:3.24:2007/05/18:ecb_crypt:3:des_crypt:3:
-○:LDP man-pages:3.24:2009/03/15:ecvt:3:2009/05/14::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.24:2007/07/26:ecvt_r:3:2002/09/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/07/17:edata:3:end:3:
-○:LDP man-pages:3.24:2003/04/04:encrypt:3:2004/02/06::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.24:2003/04/04:encrypt_r:3:encrypt:3:
-○:LDP man-pages:3.24:2008/07/17:end:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2003/09/09:endaliasent:3:setaliasent:3:
-@:LDP man-pages:3.24:2002/02/28:endfsent:3:getfsent:3:
-@:LDP man-pages:3.24:2009/03/30:endgrent:3:getgrent:3:
-@:LDP man-pages:3.24:2009/12/03:endhostent:3:gethostbyname:3:
-×:LDP man-pages:3.24:2009/01/19:endian:3:::::
-@:LDP man-pages:3.24:2009/09/15:endmntent:3:getmntent:3:
-@:LDP man-pages:3.24:2008/08/19:endnetent:3:getnetent:3:
-@:LDP man-pages:3.24:2007/07/26:endnetgrent:3:setnetgrent:3:
-@:LDP man-pages:3.24:2008/08/19:endprotoent:3:getprotoent:3:
-@:LDP man-pages:3.24:2009/03/30:endpwent:3:getpwent:3:
-@:LDP man-pages:3.24:2008/08/19:endrpcent:3:getrpcent:3:
-@:LDP man-pages:3.24:2008/08/19:endservent:3:getservent:3:
-@:LDP man-pages:3.24:2010/02/25:endspent:3:getspnam:3:
-@:LDP man-pages:3.24:2002/07/18:endttyent:3:getttyent:3:
-@:LDP man-pages:3.24:2007/07/26:endusershell:3:getusershell:3:
-@:LDP man-pages:3.24:2008/06/29:endutent:3:getutent:3:
-@:LDP man-pages:3.24:2008/06/29:endutxent:3:getutent:3:
-@:LDP man-pages:3.24:2007/05/18:envz:3:envz_add:3:
-○:LDP man-pages:3.24:2007/05/18:envz_add:3:2003/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2007/05/18:envz_entry:3:envz_add:3:
-@:LDP man-pages:3.24:2007/05/18:envz_get:3:envz_add:3:
-@:LDP man-pages:3.24:2007/05/18:envz_merge:3:envz_add:3:
-@:LDP man-pages:3.24:2007/05/18:envz_remove:3:envz_add:3:
-@:LDP man-pages:3.24:2007/05/18:envz_strip:3:envz_add:3:
-@:LDP man-pages:3.24:2007/07/26:erand48:3:drand48:3:
-@:LDP man-pages:3.24:2007/07/26:erand48_r:3:drand48_r:3:
-○:LDP man-pages:3.24:2008/08/05:erf:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/08/05:erfc:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/05:erfcf:3:erfc:3:
-@:LDP man-pages:3.24:2008/08/05:erfcl:3:erfc:3:
-@:LDP man-pages:3.24:2008/08/05:erff:3:erf:3:
-@:LDP man-pages:3.24:2008/08/05:erfl:3:erf:3:
-○:LDP man-pages:3.24:2007/12/28:err:3:2003/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/07/09:errno:3:2006/07/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2006/04/25:error:3:2006/08/19::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.24:2006/04/25:error_at_line:3:error:3:
-@:LDP man-pages:3.24:2006/04/25:error_message_count:3:error:3:
-@:LDP man-pages:3.24:2006/04/25:error_on_per_line:3:error:3:
-@:LDP man-pages:3.24:2006/04/25:error_print_progname:3:error:3:
-@:LDP man-pages:3.24:2007/12/28:errx:3:err:3:
-@:LDP man-pages:3.24:2008/07/17:etext:3:end:3:
-○:LDP man-pages:3.24:2002/07/20:ether_aton:3:2002/09/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2002/07/20:ether_aton_r:3:ether_aton:3:
-@:LDP man-pages:3.24:2002/07/20:ether_hostton:3:ether_aton:3:
-@:LDP man-pages:3.24:2002/07/20:ether_line:3:ether_aton:3:
-@:LDP man-pages:3.24:2002/07/20:ether_ntoa:3:ether_aton:3:
-@:LDP man-pages:3.24:2002/07/20:ether_ntoa_r:3:ether_aton:3:
-@:LDP man-pages:3.24:2002/07/20:ether_ntohost:3:ether_aton:3:
-○:LDP man-pages:3.24:2007/07/26:euidaccess:3:2007/06/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2009/01/26:eventfd_read:3:eventfd:2:
-@:LDP man-pages:3.24:2009/01/26:eventfd_write:3:eventfd:2:
-○:LDP man-pages:3.24:2009/02/22:exec:3:2005/03/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2009/02/22:execl:3:exec:3:
-@:LDP man-pages:3.24:2009/02/22:execle:3:exec:3:
-@:LDP man-pages:3.24:2009/02/22:execlp:3:exec:3:
-@:LDP man-pages:3.24:2009/02/22:execv:3:exec:3:
-@:LDP man-pages:3.24:2009/02/22:execvp:3:exec:3:
-○:LDP man-pages:3.24:2009/09/20:exit:3:2007/06/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/08/05:exp:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/08/11:exp10:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/11:exp10f:3:exp10:3:
-@:LDP man-pages:3.24:2008/08/11:exp10l:3:exp10:3:
-○:LDP man-pages:3.24:2008/08/11:exp2:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/11:exp2f:3:exp2:3:
-@:LDP man-pages:3.24:2008/08/11:exp2l:3:exp2:3:
-@:LDP man-pages:3.24:2008/08/05:expf:3:exp:3:
-@:LDP man-pages:3.24:2008/08/05:expl:3:exp:3:
-○:LDP man-pages:3.24:2008/08/05:expm1:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/05:expm1f:3:expm1:3:
-@:LDP man-pages:3.24:2008/08/05:expm1l:3:expm1:3:
-○:LDP man-pages:3.24:2008/08/05:fabs:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/05:fabsf:3:fabs:3:
-@:LDP man-pages:3.24:2008/08/05:fabsl:3:fabs:3:
-○:LDP man-pages:3.24:2009/02/23:fclose:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2006/12/27:fcloseall:3:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2009/03/15:fcvt:3:ecvt:3:
-@:LDP man-pages:3.24:2007/07/26:fcvt_r:3:ecvt_r:3:
-○:LDP man-pages:3.24:2008/08/11:fdim:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/11:fdimf:3:fdim:3:
-@:LDP man-pages:3.24:2008/08/11:fdiml:3:fdim:3:
-@:LDP man-pages:3.24:2009/02/23:fdopen:3:fopen:3:
-@:LDP man-pages:3.24:2008/08/06:fdopendir:3:opendir:3:
-@:LDP man-pages:3.24:2008/08/11:feclearexcept:3:fenv:3:
-@:LDP man-pages:3.24:2008/08/11:fedisableexcept:3:fenv:3:
-@:LDP man-pages:3.24:2008/08/11:feenableexcept:3:fenv:3:
-@:LDP man-pages:3.24:2008/08/11:fegetenv:3:fenv:3:
-@:LDP man-pages:3.24:2008/08/11:fegetexcept:3:fenv:3:
-@:LDP man-pages:3.24:2008/08/11:fegetexceptflag:3:fenv:3:
-@:LDP man-pages:3.24:2008/08/11:fegetround:3:fenv:3:
-@:LDP man-pages:3.24:2008/08/11:feholdexcept:3:fenv:3:
-○:LDP man-pages:3.24:2008/08/11:fenv:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/29:feof:3:ferror:3:
-@:LDP man-pages:3.24:2008/08/29:feof_unlocked:3:unlocked_stdio:3:
-@:LDP man-pages:3.24:2008/08/11:feraiseexcept:3:fenv:3:
-○:LDP man-pages:3.24:2008/08/29:ferror:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.24:2008/08/29:ferror_unlocked:3:unlocked_stdio:3:
-@:LDP man-pages:3.24:2008/08/11:fesetenv:3:fenv:3:
-@:LDP man-pages:3.24:2008/08/11:fesetexceptflag:3:fenv:3:
-@:LDP man-pages:3.24:2008/08/11:fesetround:3:fenv:3:
-@:LDP man-pages:3.24:2008/08/11:fetestexcept:3:fenv:3:
-@:LDP man-pages:3.24:2008/08/11:feupdateenv:3:fenv:3:
-○:LDP man-pages:3.24:2009/02/04:fexecve:3:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2009/09/06:fflush:3:2001/11/09::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.24:2008/08/29:fflush_unlocked:3:unlocked_stdio:3:
-○:LDP man-pages:3.24:2009/08/27:ffs:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.24:2009/08/27:ffsl:3:ffs:3:
-@:LDP man-pages:3.24:2009/08/27:ffsll:3:ffs:3:
-@:LDP man-pages:3.24:2008/08/06:fgetc:3:gets:3:
-@:LDP man-pages:3.24:2008/08/29:fgetc_unlocked:3:unlocked_stdio:3:
-○:LDP man-pages:3.24:2008/07/10:fgetgrent:3:1997/12/19::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
-@:LDP man-pages:3.24:2007/07/26:fgetgrent_r:3:getgrent_r:3:
-@:LDP man-pages:3.24:1993/11/29:fgetpos:3:fseek:3:
-○:LDP man-pages:3.24:2008/07/10:fgetpwent:3:1997/12/18::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
-@:LDP man-pages:3.24:2007/07/26:fgetpwent_r:3:getpwent_r:3:
-@:LDP man-pages:3.24:2008/08/06:fgets:3:gets:3:
-@:LDP man-pages:3.24:2008/08/29:fgets_unlocked:3:unlocked_stdio:3:
-@:LDP man-pages:3.24:2010/02/25:fgetspent:3:getspnam:3:
-@:LDP man-pages:3.24:2010/02/25:fgetspent_r:3:getspnam:3:
-○:LDP man-pages:3.24:1999/07/25:fgetwc:3:2001/11/09::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.24:2008/08/29:fgetwc_unlocked:3:unlocked_stdio:3:
-○:LDP man-pages:3.24:1999/07/25:fgetws:3:2001/11/09::ysato@h4.dion.ne.jp:Yuichi SATO:
-@:LDP man-pages:3.24:2008/08/29:fgetws_unlocked:3:unlocked_stdio:3:
-@:LDP man-pages:3.24:2008/08/29:fileno:3:ferror:3:
-@:LDP man-pages:3.24:2008/08/29:fileno_unlocked:3:unlocked_stdio:3:
-○:LDP man-pages:3.24:2008/08/05:finite:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/05:finitef:3:finite:3:
-@:LDP man-pages:3.24:2008/08/05:finitel:3:finite:3:
-○:LDP man-pages:3.24:2008/08/29:flockfile:3:2001/11/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/10/06:floor:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/10/06:floorf:3:floor:3:
-@:LDP man-pages:3.24:2008/10/06:floorl:3:floor:3:
-○:LDP man-pages:3.24:2008/10/06:fma:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/10/06:fmaf:3:fma:3:
-@:LDP man-pages:3.24:2008/10/06:fmal:3:fma:3:
-○:LDP man-pages:3.24:2008/08/11:fmax:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/11:fmaxf:3:fmax:3:
-@:LDP man-pages:3.24:2008/08/11:fmaxl:3:fmax:3:
-○:LDP man-pages:3.24:2009/09/15:fmemopen:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/08/11:fmin:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/11:fminf:3:fmin:3:
-@:LDP man-pages:3.24:2008/08/11:fminl:3:fmin:3:
-○:LDP man-pages:3.24:2008/08/05:fmod:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/05:fmodf:3:fmod:3:
-@:LDP man-pages:3.24:2008/08/05:fmodl:3:fmod:3:
-○:LDP man-pages:3.24:2008/06/14:fmtmsg:3:2004/08/14::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2000/10/15:fnmatch:3:2006/03/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2009/02/23:fopen:3:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-×:LDP man-pages:3.24:2008/12/05:fopencookie:3:::::
-@:LDP man-pages:3.24:2003/07/18:forkpty:3:openpty:3:
-○:LDP man-pages:3.24:1993/04/04:fpathconf:3:1998/03/20::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.24:2008/08/07:fpclassify:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/12/19:fprintf:3:printf:3:
-○:LDP man-pages:3.24:2001/12/15:fpurge:3:2002/01/14::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-@:LDP man-pages:3.24:1993/04/04:fputc:3:puts:3:
-@:LDP man-pages:3.24:2008/08/29:fputc_unlocked:3:unlocked_stdio:3:
-@:LDP man-pages:3.24:1993/04/04:fputs:3:puts:3:
-@:LDP man-pages:3.24:2008/08/29:fputs_unlocked:3:unlocked_stdio:3:
-○:LDP man-pages:3.24:1999/07/25:fputwc:3:2001/11/09::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.24:2008/08/29:fputwc_unlocked:3:unlocked_stdio:3:
-○:LDP man-pages:3.24:1999/07/25:fputws:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.24:2008/08/29:fputws_unlocked:3:unlocked_stdio:3:
-○:LDP man-pages:3.24:1996/05/17:fread:3:2001/11/09::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.24:2008/08/29:fread_unlocked:3:unlocked_stdio:3:
-@:LDP man-pages:3.24:2009/01/13:free:3:malloc:3:
-@:LDP man-pages:3.24:2009/09/03:freeaddrinfo:3:getaddrinfo:3:
-@:LDP man-pages:3.24:2007/11/15:freehostent:3:getipnodebyname:3:
-※:LDP man-pages:3.24:2009/01/23:freeifaddrs:3:getifaddrs:3:
-@:LDP man-pages:3.24:2009/02/23:freopen:3:fopen:3:
-○:LDP man-pages:3.24:2008/10/29:frexp:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/10/29:frexpf:3:frexp:3:
-@:LDP man-pages:3.24:2008/10/29:frexpl:3:frexp:3:
-@:LDP man-pages:3.24:2008/07/12:fscanf:3:scanf:3:
-○:LDP man-pages:3.24:1993/11/29:fseek:3:1998/04/27::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.24:2001/11/05:fseeko:3:2006/01/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:1993/11/29:fsetpos:3:fseek:3:
-@:LDP man-pages:3.24:1993/11/29:ftell:3:fseek:3:
-@:LDP man-pages:3.24:2001/11/05:ftello:3:fseeko:3:
-○:LDP man-pages:3.24:2010/02/25:ftime:3:2008/10/08::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.24:2001/11/28:ftok:3:2002/01/06::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-@:LDP man-pages:3.24:2008/08/29:ftrylockfile:3:flockfile:3:
-○:LDP man-pages:3.24:2007/12/28:fts:3:2000/09/05::sato@complex.eng.hokudai.ac.jp:Yuichi SATO:
-@:LDP man-pages:3.24:2007/12/28:fts_children:3:fts:3:
-@:LDP man-pages:3.24:2007/12/28:fts_close:3:fts:3:
-@:LDP man-pages:3.24:2007/12/28:fts_open:3:fts:3:
-@:LDP man-pages:3.24:2007/12/28:fts_read:3:fts:3:
-@:LDP man-pages:3.24:2007/12/28:fts_set:3:fts:3:
-○:LDP man-pages:3.24:2008/08/06:ftw:3:2006/07/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/29:funlockfile:3:flockfile:3:
-※:LDP man-pages:3.24:2009/12/13:futimens:3:utimensat:2:
-○:LDP man-pages:3.24:2008/04/07:futimes:3:2006/07/31::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2007/07/26:fwide:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-@:LDP man-pages:3.24:2007/07/26:fwprintf:3:wprintf:3:
-@:LDP man-pages:3.24:1996/05/17:fwrite:3:fread:3:
-@:LDP man-pages:3.24:2008/08/29:fwrite_unlocked:3:unlocked_stdio:3:
-@:LDP man-pages:3.24:2009/09/03:gai_strerror:3:getaddrinfo:3:
-○:LDP man-pages:3.24:2008/08/05:gamma:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/05:gammaf:3:gamma:3:
-@:LDP man-pages:3.24:2008/08/05:gammal:3:gamma:3:
-○:LDP man-pages:3.24:2009/03/15:gcvt:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2009/03/31:get_current_dir_name:3:getcwd:3:
-@:LDP man-pages:3.24:2008/07/17:get_myaddress:3:rpc:3:
-○:LDP man-pages:3.24:2009/09/03:getaddrinfo:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2003/09/09:getaliasbyname:3:setaliasent:3:
-@:LDP man-pages:3.24:2003/09/09:getaliasbyname_r:3:setaliasent:3:
-@:LDP man-pages:3.24:2003/09/09:getaliasent:3:setaliasent:3:
-@:LDP man-pages:3.24:2003/09/09:getaliasent_r:3:setaliasent:3:
-@:LDP man-pages:3.24:2008/08/06:getc:3:gets:3:
-@:LDP man-pages:3.24:2008/08/29:getc_unlocked:3:unlocked_stdio:3:
-@:LDP man-pages:3.24:2008/08/06:getchar:3:gets:3:
-@:LDP man-pages:3.24:2008/08/29:getchar_unlocked:3:unlocked_stdio:3:
-○:LDP man-pages:3.24:2009/03/31:getcwd:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.24:2008/09/07:getdate:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/09/07:getdate_err:3:getdate:3:
-@:LDP man-pages:3.24:2008/09/07:getdate_r:3:getdate:3:
-@:LDP man-pages:3.24:2009/12/05:getdelim:3:getline:3:
-○:LDP man-pages:3.24:2007/07/26:getdirentries:3:1998/04/30::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.24:2008/03/17:getenv:3:2003/09/28::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.24:2002/02/28:getfsent:3:2002/08/07::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-@:LDP man-pages:3.24:2002/02/28:getfsfile:3:getfsent:3:
-@:LDP man-pages:3.24:2002/02/28:getfsspec:3:getfsent:3:
-○:LDP man-pages:3.24:2009/03/30:getgrent:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2007/07/26:getgrent_r:3:2004/08/14::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.24:2009/03/30:getgrgid:3:getgrnam:3:
-@:LDP man-pages:3.24:2009/03/30:getgrgid_r:3:getgrnam:3:
-○:LDP man-pages:3.24:2009/03/30:getgrnam:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2009/03/30:getgrnam_r:3:getgrnam:3:
-○:LDP man-pages:3.24:2008/07/03:getgrouplist:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2009/12/03:gethostbyaddr:3:gethostbyname:3:
-@:LDP man-pages:3.24:2009/12/03:gethostbyaddr_r:3:gethostbyname:3:
-○:LDP man-pages:3.24:2009/12/03:gethostbyname:3:2007/06/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2009/12/03:gethostbyname2:3:gethostbyname:3:
-@:LDP man-pages:3.24:2009/12/03:gethostbyname2_r:3:gethostbyname:3:
-@:LDP man-pages:3.24:2009/12/03:gethostbyname_r:3:gethostbyname:3:
-@:LDP man-pages:3.24:2009/12/03:gethostent:3:gethostbyname:3:
-@:LDP man-pages:3.24:2009/12/03:gethostent_r:3:gethostbyname:3:
-○:LDP man-pages:3.24:2009/01/13:gethostid:3:::::
-×:LDP man-pages:3.24:2009/01/23:getifaddrs:3:::::
-@:LDP man-pages:3.24:2007/11/15:getipnodebyaddr:3:getipnodebyname:3:
-○:LDP man-pages:3.24:2007/11/15:getipnodebyname:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.24:2009/12/05:getline:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:0000/00/00:getloadavg:3:2002/01/21::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.24:2008/06/29:getlogin:3:2005/03/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/06/29:getlogin_r:3:getlogin:3:
-○:LDP man-pages:3.24:2009/09/15:getmntent:3:2005/03/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2009/09/15:getmntent_r:3:getmntent:3:
-○:LDP man-pages:3.24:2009/12/03:getnameinfo:3:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/19:getnetbyaddr:3:getnetent:3:
-※:LDP man-pages:3.24:2009/02/21:getnetbyaddr_r:3:getnetent_r:3:
-@:LDP man-pages:3.24:2008/08/19:getnetbyname:3:getnetent:3:
-※:LDP man-pages:3.24:2009/02/21:getnetbyname_r:3:getnetent_r:3:
-○:LDP man-pages:3.24:2008/08/19:getnetent:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-×:LDP man-pages:3.24:2009/02/21:getnetent_r:3:::::
-@:LDP man-pages:3.24:2007/07/26:getnetgrent:3:setnetgrent:3:
-@:LDP man-pages:3.24:2007/07/26:getnetgrent_r:3:setnetgrent:3:
-○:LDP man-pages:3.24:2010/02/03:getopt:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2010/02/03:getopt_long:3:getopt:3:
-@:LDP man-pages:3.24:2010/02/03:getopt_long_only:3:getopt:3:
-○:LDP man-pages:3.24:2000/12/05:getpass:3:2001/02/14::nakano@apm.seikei.ac.jp:NAKANO Takeo:Older ver. is in obsolete/
-@:LDP man-pages:3.24:2008/08/19:getprotobyname:3:getprotoent:3:
-※:LDP man-pages:3.24:2008/08/19:getprotobyname_r:3:getprotoent_r:3:
-@:LDP man-pages:3.24:2008/08/19:getprotobynumber:3:getprotoent:3:
-※:LDP man-pages:3.24:2008/08/19:getprotobynumber_r:3:getprotoent_r:3:
-○:LDP man-pages:3.24:2008/08/19:getprotoent:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-×:LDP man-pages:3.24:2008/08/19:getprotoent_r:3:::::
-○:LDP man-pages:3.24:2008/06/14:getpt:3:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2007/12/12:getpw:3:2008/10/08::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.24:2009/03/30:getpwent:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2007/07/26:getpwent_r:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2009/03/30:getpwnam:3:2005/10/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2009/03/30:getpwnam_r:3:getpwnam:3:
-@:LDP man-pages:3.24:2009/03/30:getpwuid:3:getpwnam:3:
-@:LDP man-pages:3.24:2009/03/30:getpwuid_r:3:getpwnam:3:
-@:LDP man-pages:3.24:2008/08/19:getrpcbyname:3:getrpcent:3:
-※:LDP man-pages:3.24:2008/08/19:getrpcbyname_r:3:getrpcent_r:3:
-@:LDP man-pages:3.24:2008/08/19:getrpcbynumber:3:getrpcent:3:
-※:LDP man-pages:3.24:2008/08/19:getrpcbynumber_r:3:getrpcent_r:3:
-○:LDP man-pages:3.24:2008/08/19:getrpcent:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-×:LDP man-pages:3.24:2008/08/19:getrpcent_r:3:::::
-○:LDP man-pages:3.24:1987/10/06:getrpcport:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-○:LDP man-pages:3.24:2008/08/06:gets:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/19:getservbyname:3:getservent:3:
-※:LDP man-pages:3.24:2008/08/19:getservbyname_r:3:getservent_r:3:
-@:LDP man-pages:3.24:2008/08/19:getservbyport:3:getservent:3:
-※:LDP man-pages:3.24:2008/08/19:getservbyport_r:3:getservent_r:3:
-○:LDP man-pages:3.24:2008/08/19:getservent:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-×:LDP man-pages:3.24:2008/08/19:getservent_r:3:::::
-@:LDP man-pages:3.24:2010/02/25:getspent:3:getspnam:3:
-@:LDP man-pages:3.24:2010/02/25:getspent_r:3:getspnam:3:
-○:LDP man-pages:3.24:2010/02/25:getspnam:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2010/02/25:getspnam_r:3:getspnam:3:
-○:LDP man-pages:3.24:2008/05/29:getsubopt:3:2007/06/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2002/07/18:getttyent:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.24:2002/07/18:getttynam:3:getttyent:3:
-○:LDP man-pages:3.24:2009/01/20:getumask:3:2003/02/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2007/07/26:getusershell:3:1998/02/05::ishioka@dad.eec.toshiba.co.jp:ISHIOKA Takashi:
-○:LDP man-pages:3.24:2008/06/29:getutent:3:2005/03/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/06/29:getutent_r:3:getutent:3:
-@:LDP man-pages:3.24:2008/06/29:getutid:3:getutent:3:
-@:LDP man-pages:3.24:2008/06/29:getutid_r:3:getutent:3:
-@:LDP man-pages:3.24:2008/06/29:getutline:3:getutent:3:
-@:LDP man-pages:3.24:2008/06/29:getutline_r:3:getutent:3:
-×:LDP man-pages:3.24:2008/07/02:getutmp:3:::::
-※:LDP man-pages:3.24:2008/07/02:getutmpx:3:getutmp:3:
-@:LDP man-pages:3.24:2008/06/29:getutxent:3:getutent:3:
-@:LDP man-pages:3.24:2008/06/29:getutxid:3:getutent:3:
-@:LDP man-pages:3.24:2008/06/29:getutxline:3:getutent:3:
-○:LDP man-pages:3.24:2007/12/20:getw:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.24:1999/07/25:getwc:3:fgetwc:3:
-@:LDP man-pages:3.24:2008/08/29:getwc_unlocked:3:unlocked_stdio:3:
-○:LDP man-pages:3.24:1999/07/25:getwchar:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.24:2008/08/29:getwchar_unlocked:3:unlocked_stdio:3:
-@:LDP man-pages:3.24:2009/03/31:getwd:3:getcwd:3:
-○:LDP man-pages:3.24:2007/10/10:glob:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.24:2007/10/10:globfree:3:glob:3:
-@:LDP man-pages:3.24:2010/02/25:gmtime:3:ctime:3:
-@:LDP man-pages:3.24:2010/02/25:gmtime_r:3:ctime:3:
-※:LDP man-pages:3.24:2008/12/01:gnu_dev_major:3:makedev:3:
-※:LDP man-pages:3.24:2008/12/01:gnu_dev_makedev:3:makedev:3:
-※:LDP man-pages:3.24:2008/12/01:gnu_dev_minor:3:makedev:3:
-@:LDP man-pages:3.24:2008/07/02:gnu_get_libc_release:3:gnu_get_libc_version:3:
-○:LDP man-pages:3.24:2008/07/02:gnu_get_libc_version:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/06/14:grantpt:3:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2007/07/26:gsignal:3:2003/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2009/12/03:h_errno:3:gethostbyname:3:
-○:LDP man-pages:3.24:1994/08/18:hash:3:1999/08/17::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-@:LDP man-pages:3.24:2009/09/15:hasmntopt:3:getmntent:3:
-@:LDP man-pages:3.24:2008/10/06:hcreate:3:hsearch:3:
-@:LDP man-pages:3.24:2008/10/06:hcreate_r:3:hsearch:3:
-@:LDP man-pages:3.24:2008/10/06:hdestroy:3:hsearch:3:
-@:LDP man-pages:3.24:2008/10/06:hdestroy_r:3:hsearch:3:
-@:LDP man-pages:3.24:2009/12/03:herror:3:gethostbyname:3:
-○:LDP man-pages:3.24:2008/10/06:hsearch:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/10/06:hsearch_r:3:hsearch:3:
-@:LDP man-pages:3.24:2009/12/03:hstrerror:3:gethostbyname:3:
-※:LDP man-pages:3.24:2009/01/19:htobe16:3:endian:3:
-※:LDP man-pages:3.24:2009/01/19:htobe32:3:endian:3:
-※:LDP man-pages:3.24:2009/01/19:htobe64:3:endian:3:
-※:LDP man-pages:3.24:2009/01/19:htole16:3:endian:3:
-※:LDP man-pages:3.24:2009/01/19:htole32:3:endian:3:
-※:LDP man-pages:3.24:2009/01/19:htole64:3:endian:3:
-@:LDP man-pages:3.24:2009/01/15:htonl:3:byteorder:3:
-@:LDP man-pages:3.24:2009/01/15:htons:3:byteorder:3:
-○:LDP man-pages:3.24:2008/08/05:hypot:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/05:hypotf:3:hypot:3:
-@:LDP man-pages:3.24:2008/08/05:hypotl:3:hypot:3:
-○:LDP man-pages:3.24:2008/09/08:iconv:3:2000/07/11::sato@complex.eng.hokudai.ac.jp:Yuichi SATO:
-○:LDP man-pages:3.24:1999/11/27:iconv_close:3:2000/07/11::sato@complex.eng.hokudai.ac.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2007/03/31:iconv_open:3:2007/06/01::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2009/02/04:ilogb:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2009/02/04:ilogbf:3:ilogb:3:
-@:LDP man-pages:3.24:2009/02/04:ilogbl:3:ilogb:3:
-@:LDP man-pages:3.24:2007/07/26:imaxabs:3:abs:3:
-@:LDP man-pages:3.24:2007/07/26:imaxdiv:3:div:3:
-○:LDP man-pages:3.24:2009/03/15:index:3:1997/12/12::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
-○:LDP man-pages:3.24:2008/06/19:inet:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/06/19:inet_addr:3:inet:3:
-@:LDP man-pages:3.24:2008/06/19:inet_aton:3:inet:3:
-@:LDP man-pages:3.24:2008/06/19:inet_lnaof:3:inet:3:
-@:LDP man-pages:3.24:2008/06/19:inet_makeaddr:3:inet_addr:3:
-@:LDP man-pages:3.24:2008/06/19:inet_netof:3:inet:3:
-@:LDP man-pages:3.24:2008/06/19:inet_network:3:inet:3:
-@:LDP man-pages:3.24:2008/06/19:inet_ntoa:3:inet:3:
-○:LDP man-pages:3.24:2008/11/11:inet_ntop:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/06/18:inet_pton:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:1993/06/02:infnan:3:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2007/07/26:initgroups:3:2005/02/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2009/02/03:initstate:3:random:3:
-@:LDP man-pages:3.24:2008/03/07:initstate_r:3:random_r:3:
-@:LDP man-pages:3.24:2007/07/26:innetgr:3:setnetgrent:3:
-○:LDP man-pages:3.24:2008/07/11:insque:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.24:2010/02/03:intro:3:2008/02/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2007/12/28:iruserok:3:rcmd:3:
-@:LDP man-pages:3.24:2009/03/15:isalnum:3:isalpha:3:
-○:LDP man-pages:3.24:2009/03/15:isalpha:3:2007/05/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2009/03/15:isascii:3:isalpha:3:
-○:LDP man-pages:3.24:2008/12/03:isatty:3:1997/2/10::nagoya@cc.hit-u.ac.jp:NAGOYA Hiroaki:
-@:LDP man-pages:3.24:2009/03/15:isblank:3:isalpha:3:
-@:LDP man-pages:3.24:2009/03/15:iscntrl:3:isalpha:3:
-@:LDP man-pages:3.24:2009/03/15:isdigit:3:isalpha:3:
-@:LDP man-pages:3.24:2008/08/07:isfinite:3:fpclassify:3:
-@:LDP man-pages:3.24:2009/03/15:isgraph:3:isalpha:3:
-○:LDP man-pages:3.24:2008/08/05:isgreater:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/05:isgreaterequal:3:isgreater:3:
-@:LDP man-pages:3.24:2008/08/07:isinf:3:fpclassify:3:
-@:LDP man-pages:3.24:2008/08/05:isinff:3:finite:3:
-@:LDP man-pages:3.24:2008/08/05:isinfl:3:finite:3:
-@:LDP man-pages:3.24:2008/08/05:isless:3:isgreater:3:
-@:LDP man-pages:3.24:2008/08/05:islessequal:3:isgreater:3:
-@:LDP man-pages:3.24:2008/08/05:islessgreater:3:isgreater:3:
-@:LDP man-pages:3.24:2009/03/15:islower:3:isalpha:3:
-@:LDP man-pages:3.24:2008/08/07:isnan:3:fpclassify:3:
-@:LDP man-pages:3.24:2008/08/05:isnanf:3:finite:3:
-@:LDP man-pages:3.24:2008/08/05:isnanl:3:finite:3:
-@:LDP man-pages:3.24:2008/08/07:isnormal:3:fpclassify:3:
-@:LDP man-pages:3.24:2009/03/15:isprint:3:isalpha:3:
-@:LDP man-pages:3.24:2009/03/15:ispunct:3:isalpha:3:
-@:LDP man-pages:3.24:2009/03/15:isspace:3:isalpha:3:
-@:LDP man-pages:3.24:2008/08/05:isunordered:3:isgreater:3:
-@:LDP man-pages:3.24:2009/03/15:isupper:3:isalpha:3:
-○:LDP man-pages:3.24:1999/07/25:iswalnum:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.24:1999/07/25:iswalpha:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.24:2007/07/26:iswblank:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.24:1999/07/25:iswcntrl:3:1999/09/12::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.24:1999/07/25:iswctype:3:1999/09/12::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.24:1999/07/25:iswdigit:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.24:1999/07/25:iswgraph:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.24:1999/07/25:iswlower:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.24:1999/07/25:iswprint:3:1999/09/12::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.24:1999/07/25:iswpunct:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.24:1999/07/25:iswspace:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.24:1999/07/25:iswupper:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.24:1999/07/25:iswxdigit:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.24:2009/03/15:isxdigit:3:isalpha:3:
-○:LDP man-pages:3.24:2008/08/05:j0:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/05:j0f:3:j0:3:
-@:LDP man-pages:3.24:2008/08/05:j0l:3:j0:3:
-@:LDP man-pages:3.24:2008/08/05:j1:3:j0:3:
-@:LDP man-pages:3.24:2008/08/05:j1f:3:j0:3:
-@:LDP man-pages:3.24:2008/08/05:j1l:3:j0:3:
-@:LDP man-pages:3.24:2008/08/05:jn:3:j0:3:
-@:LDP man-pages:3.24:2008/08/05:jnf:3:j0:3:
-@:LDP man-pages:3.24:2008/08/05:jnl:3:j0:3:
-@:LDP man-pages:3.24:2007/07/26:jrand48:3:drand48:3:
-@:LDP man-pages:3.24:2007/07/26:jrand48_r:3:drand48_r:3:
-@:LDP man-pages:3.24:2002/07/18:key_decryptsession:3:key_setsecret:3:
-@:LDP man-pages:3.24:2002/07/18:key_encryptsession:3:key_setsecret:3:
-@:LDP man-pages:3.24:2002/07/18:key_gendes:3:key_setsecret:3:
-@:LDP man-pages:3.24:2002/07/18:key_secretkey_is_set:3:key_setsecret:3:
-○:LDP man-pages:3.24:2002/07/18:key_setsecret:3:2003/02/01::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/06/20:klogctl:3:syslog:2:
-@:LDP man-pages:3.24:2007/07/26:l64a:3:a64l:3:
-@:LDP man-pages:3.24:2007/07/26:labs:3:abs:3:
-@:LDP man-pages:3.24:2010/02/25:lckpwdf:3:getspnam:3:
-@:LDP man-pages:3.24:2007/07/26:lcong48:3:drand48:3:
-@:LDP man-pages:3.24:2007/07/26:lcong48_r:3:drand48_r:3:
-○:LDP man-pages:3.24:2008/08/05:ldexp:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/05:ldexpf:3:ldexp:3:
-@:LDP man-pages:3.24:2008/08/05:ldexpl:3:ldexp:3:
-@:LDP man-pages:3.24:2007/07/26:ldiv:3:div:3:
-※:LDP man-pages:3.24:2009/01/19:le16toh:3:endian:3:
-※:LDP man-pages:3.24:2009/01/19:le32toh:3:endian:3:
-※:LDP man-pages:3.24:2009/01/19:le64toh:3:endian:3:
-@:LDP man-pages:3.24:1999/09/27:lfind:3:lsearch:3:
-○:LDP man-pages:3.24:2008/08/05:lgamma:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/05:lgamma_r:3:lgamma:3:
-@:LDP man-pages:3.24:2008/08/05:lgammaf:3:lgamma:3:
-@:LDP man-pages:3.24:2008/08/05:lgammaf_r:3:lgamma:3:
-@:LDP man-pages:3.24:2008/08/05:lgammal:3:lgamma:3:
-@:LDP man-pages:3.24:2008/08/05:lgammal_r:3:lgamma:3:
-@:LDP man-pages:3.24:2007/07/26:llabs:3:abs:3:
-@:LDP man-pages:3.24:2007/07/26:lldiv:3:div:3:
-@:LDP man-pages:3.24:2008/08/11:llrint:3:lrint:3:
-@:LDP man-pages:3.24:2008/08/11:llrintf:3:lrint:3:
-@:LDP man-pages:3.24:2008/08/11:llrintl:3:lrint:3:
-@:LDP man-pages:3.24:2008/08/11:llround:3:lround:3:
-@:LDP man-pages:3.24:2008/08/11:llroundf:3:lround:3:
-@:LDP man-pages:3.24:2008/08/11:llroundl:3:lround:3:
-○:LDP man-pages:3.24:1993/04/25:localeconv:3:1998/05/25::tyoshino@eng.toyo.ac.jp:Takashi Yoshino:
-@:LDP man-pages:3.24:2010/02/25:localtime:3:ctime:3:
-@:LDP man-pages:3.24:2010/02/25:localtime_r:3:ctime:3:
-○:LDP man-pages:3.24:2009/07/25:lockf:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/08/10:log:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/08/05:log10:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/05:log10f:3:log10:3:
-@:LDP man-pages:3.24:2008/08/05:log10l:3:log10:3:
-○:LDP man-pages:3.24:2008/08/05:log1p:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/05:log1pf:3:log1p:3:
-@:LDP man-pages:3.24:2008/08/05:log1pl:3:log1p:3:
-○:LDP man-pages:3.24:2008/08/11:log2:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/11:log2f:3:log2:3:
-@:LDP man-pages:3.24:2008/08/11:log2l:3:log2:3:
-○:LDP man-pages:3.24:2008/08/05:logb:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/05:logbf:3:logb:3:
-@:LDP man-pages:3.24:2008/08/05:logbl:3:logb:3:
-@:LDP man-pages:3.24:2008/08/10:logf:3:log:3:
-○:LDP man-pages:3.24:2004/05/06:login:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.24:2003/07/18:login_tty:3:openpty:3:
-@:LDP man-pages:3.24:2008/08/10:logl:3:log:3:
-@:LDP man-pages:3.24:2004/05/06:logout:3:login:3:
-@:LDP man-pages:3.24:2008/07/02:logwtmp:3:updwtmp:3:
-○:LDP man-pages:3.24:2009/01/13:longjmp:3:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2007/07/26:lrand48:3:drand48:3:
-@:LDP man-pages:3.24:2007/07/26:lrand48_r:3:drand48_r:3:
-○:LDP man-pages:3.24:2008/08/11:lrint:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/11:lrintf:3:lrint:3:
-@:LDP man-pages:3.24:2008/08/11:lrintl:3:lrint:3:
-○:LDP man-pages:3.24:2008/08/11:lround:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/11:lroundf:3:lround:3:
-@:LDP man-pages:3.24:2008/08/11:lroundl:3:lround:3:
-○:LDP man-pages:3.24:1999/09/27:lsearch:3:2005/03/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2004/12/11:lseek64:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.24:2008/04/07:lutimes:3:futimes:3:
-※:LDP man-pages:3.24:2008/12/01:major:3:makedev:3:
-○:LDP man-pages:3.24:2009/03/31:makecontext:3:2008/12/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-×:LDP man-pages:3.24:2008/12/01:makedev:3:::::
-○:LDP man-pages:3.24:2009/01/13:malloc:3:2007/10/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2002/07/20:malloc_hook:3:2003/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-×:LDP man-pages:3.24:2008/07/21:matherr:3:::::
-○:LDP man-pages:3.24:1999/07/25:mblen:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-○:LDP man-pages:3.24:1999/07/25:mbrlen:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-○:LDP man-pages:3.24:2001/11/22:mbrtowc:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.24:2000/11/20:mbsinit:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-○:LDP man-pages:3.24:2007/07/26:mbsnrtowcs:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-○:LDP man-pages:3.24:1999/07/25:mbsrtowcs:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-○:LDP man-pages:3.24:1999/07/25:mbstowcs:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-○:LDP man-pages:3.24:2001/07/04:mbtowc:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-@:LDP man-pages:3.24:2009/03/30:memalign:3:posix_memalign:3:
-○:LDP man-pages:3.24:2009/01/13:memccpy:3:1997/07/26::tyoshino@eng.toyo.ac.jp:Takashi Yoshino:
-○:LDP man-pages:3.24:2009/12/04:memchr:3:2004/01/17::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:1993/04/10:memcmp:3:1997/12/17::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
-○:LDP man-pages:3.24:1993/04/10:memcpy:3:1997/02/21::tyoshino@eng.toyo.ac.jp:Takashi Yoshino:
-○:LDP man-pages:3.24:2007/07/26:memfrob:3:1998/05/34::ishikawa@linux.or.jp:ISHIKAWA Mutsumi:
-○:LDP man-pages:3.24:2008/12/05:memmem:3:1997/12/17::tyoshino@eng.toyo.ac.jp:Takashi Yoshino:
-○:LDP man-pages:3.24:1993/04/10:memmove:3:2007/06/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/08/12:mempcpy:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.24:2009/12/04:memrchr:3:memchr:3:
-○:LDP man-pages:3.24:1993/04/11:memset:3:1997/02/21::tyoshino@eng.toyo.ac.jp:Takashi Yoshino:
-※:LDP man-pages:3.24:2008/12/01:minor:3:makedev:3:
-○:LDP man-pages:3.24:2007/07/26:mkdtemp:3:2001/11/09::ysato@h4.dion.ne.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2008/06/12:mkfifo:3:2008/10/08::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.24:2009/12/13:mkfifoat:3:2006/08/19::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.24:2008/06/19:mkostemp:3:mkstemp:3:
-○:LDP man-pages:3.24:2008/06/19:mkstemp:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2007/07/26:mktemp:3:1999/04/10::tanisako@osa.dec.com:Kazuyuki Tanisako:
-@:LDP man-pages:3.24:2010/02/25:mktime:3:ctime:3:
-@:LDP man-pages:3.24:2008/04/22:mmap64:3:mmap2:2:
-○:LDP man-pages:3.24:2008/08/05:modf:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/05:modff:3:modf:3:
-@:LDP man-pages:3.24:2008/08/05:modfl:3:modf:3:
-○:LDP man-pages:3.24:1993/06/04:mpool:3:1999/08/19::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.24:2006/02/25:mq_close:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/09/29:mq_getattr:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2009/09/15:mq_notify:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2009/02/20:mq_open:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2010/02/25:mq_receive:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2010/02/25:mq_send:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/09/29:mq_setattr:3:mq_getattr:3:
-@:LDP man-pages:3.24:2010/02/25:mq_timedreceive:3:mq_receive:3:
-@:LDP man-pages:3.24:2010/02/25:mq_timedsend:3:mq_send:3:
-○:LDP man-pages:3.24:2006/02/25:mq_unlink:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2007/07/26:mrand48:3:drand48:3:
-@:LDP man-pages:3.24:2007/07/26:mrand48_r:3:drand48_r:3:
-○:LDP man-pages:3.24:2002/07/20:mtrace:3:2003/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2002/07/20:muntrace:3:mtrace:3:
-○:LDP man-pages:3.24:2008/08/11:nan:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/11:nanf:3:nan:3:
-@:LDP man-pages:3.24:2008/08/11:nanl:3:nan:3:
-@:LDP man-pages:3.24:2008/08/05:nearbyint:3:rint:3:
-@:LDP man-pages:3.24:2008/08/05:nearbyintf:3:rint:3:
-@:LDP man-pages:3.24:2008/08/05:nearbyintl:3:rint:3:
-○:LDP man-pages:3.24:1999/05/14:netlink:3:1999/08/20::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.24:2009/12/05:nextafter:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2009/12/05:nextafterf:3:nextafter:3:
-@:LDP man-pages:3.24:2009/12/05:nextafterl:3:nextafter:3:
-@:LDP man-pages:3.24:2009/12/05:nexttoward:3:nextafter:3:
-@:LDP man-pages:3.24:2009/12/05:nexttowardf:3:nextafter:3:
-@:LDP man-pages:3.24:2009/12/05:nexttowardl:3:nextafter:3:
-@:LDP man-pages:3.24:2008/08/06:nftw:3:ftw:3:
-○:LDP man-pages:3.24:2001/05/11:nl_langinfo:3:2001/07/15::KY4N-UCD@asahi-net.or.jp:UCHIDA Norihiro:
-@:LDP man-pages:3.24:2007/07/26:nrand48:3:drand48:3:
-@:LDP man-pages:3.24:2007/07/26:nrand48_r:3:drand48_r:3:
-@:LDP man-pages:3.24:2009/01/15:ntohl:3:byteorder:3:
-@:LDP man-pages:3.24:2009/01/15:ntohs:3:byteorder:3:
-○:LDP man-pages:3.24:2008/07/12:offsetof:3:2006/07/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/12/05:on_exit:3:2009/01/15:o:amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2009/09/15:open_memstream:3:fmemopen:3:
-@:LDP man-pages:3.24:2009/09/15:open_wmemstream:3:fmemopen:3:
-○:LDP man-pages:3.24:2008/08/06:opendir:3:2007/10/14:o:amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/11/12:openlog:3:syslog:3:
-○:LDP man-pages:3.24:2003/07/18:openpty:3:2006/02/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2010/02/03:optarg:3:getopt:3:
-@:LDP man-pages:3.24:2010/02/03:opterr:3:getopt:3:
-@:LDP man-pages:3.24:2010/02/03:optind:3:getopt:3:
-@:LDP man-pages:3.24:2010/02/03:optopt:3:getopt:3:
-@:LDP man-pages:3.24:2003/04/04:passwd2des:3:xcrypt:3:
-@:LDP man-pages:3.24:1993/04/04:pathconf:3:fpathconf:3:
-@:LDP man-pages:3.24:2010/02/03:pclose:3:popen:3:
-○:LDP man-pages:3.24:2007/07/26:perror:3:2005/03/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/07/17:pmap_getmaps:3:rpc:3:
-@:LDP man-pages:3.24:2008/07/17:pmap_getport:3:rpc:3:
-@:LDP man-pages:3.24:2008/07/17:pmap_rmtcall:3:rpc:3:
-@:LDP man-pages:3.24:2008/07/17:pmap_set:3:rpc:3:
-@:LDP man-pages:3.24:2008/07/17:pmap_unset:3:rpc:3:
-○:LDP man-pages:3.24:2010/02/03:popen:3:2008/11/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2009/09/30:posix_fallocate:3:2006/08/19::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2009/03/30:posix_memalign:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2007/07/26:posix_openpt:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2008/08/10:pow:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2004/10/05:pow10:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.24:2004/10/05:pow10f:3:pow10:3:
-@:LDP man-pages:3.24:2004/10/05:pow10l:3:pow10:3:
-@:LDP man-pages:3.24:2008/08/10:powf:3:pow:3:
-@:LDP man-pages:3.24:2008/08/10:powl:3:pow:3:
-○:LDP man-pages:3.24:2008/12/19:printf:3:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2007/07/26:profil:3:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2006/04/29:program_invocation_name:3:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2006/04/29:program_invocation_short_name:3:program_invocation_name:3:
-○:LDP man-pages:3.24:2008/08/21:psignal:3:1997/12/26::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
-※:LDP man-pages:3.24:2008/11/11:pthread_attr_destroy:3:pthread_attr_init:3:
-※:LDP man-pages:3.24:2009/02/01:pthread_attr_getaffinity_np:3:pthread_attr_setaffinity_np:3:
-※:LDP man-pages:3.24:2010/02/03:pthread_attr_getdetachstate:3:pthread_attr_setdetachstate:3:
-※:LDP man-pages:3.24:2008/10/24:pthread_attr_getguardsize:3:pthread_attr_setguardsize:3:
-※:LDP man-pages:3.24:2008/11/10:pthread_attr_getinheritsched:3:pthread_attr_setinheritsched:3:
-※:LDP man-pages:3.24:2010/02/03:pthread_attr_getschedparam:3:pthread_attr_setschedparam:3:
-※:LDP man-pages:3.24:2010/02/03:pthread_attr_getschedpolicy:3:pthread_attr_setschedpolicy:3:
-※:LDP man-pages:3.24:2008/10/24:pthread_attr_getscope:3:pthread_attr_setscope:3:
-※:LDP man-pages:3.24:2008/10/24:pthread_attr_getstack:3:pthread_attr_setstack:3:
-※:LDP man-pages:3.24:2008/10/24:pthread_attr_getstackaddr:3:pthread_attr_setstackaddr:3:
-※:LDP man-pages:3.24:2008/11/05:pthread_attr_getstacksize:3:pthread_attr_setstacksize:3:
-×:LDP man-pages:3.24:2008/11/11:pthread_attr_init:3:::::
-×:LDP man-pages:3.24:2009/02/01:pthread_attr_setaffinity_np:3:::::
-×:LDP man-pages:3.24:2010/02/03:pthread_attr_setdetachstate:3:::::
-×:LDP man-pages:3.24:2008/10/24:pthread_attr_setguardsize:3:::::
-×:LDP man-pages:3.24:2008/11/10:pthread_attr_setinheritsched:3:::::
-×:LDP man-pages:3.24:2010/02/03:pthread_attr_setschedparam:3:::::
-×:LDP man-pages:3.24:2010/02/03:pthread_attr_setschedpolicy:3:::::
-×:LDP man-pages:3.24:2008/10/24:pthread_attr_setscope:3:::::
-×:LDP man-pages:3.24:2008/10/24:pthread_attr_setstack:3:::::
-×:LDP man-pages:3.24:2008/10/24:pthread_attr_setstackaddr:3:::::
-×:LDP man-pages:3.24:2008/11/05:pthread_attr_setstacksize:3:::::
-×:LDP man-pages:3.24:2008/11/17:pthread_cancel:3:::::
-※:LDP man-pages:3.24:2008/11/24:pthread_cleanup_pop:3:pthread_cleanup_push:3:
-※:LDP man-pages:3.24:2008/12/04:pthread_cleanup_pop_restore_np:3:pthread_cleanup_push_defer_np:3:
-×:LDP man-pages:3.24:2008/11/24:pthread_cleanup_push:3:::::
-×:LDP man-pages:3.24:2008/12/04:pthread_cleanup_push_defer_np:3:::::
-×:LDP man-pages:3.24:2008/11/11:pthread_create:3:::::
-×:LDP man-pages:3.24:2008/11/27:pthread_detach:3:::::
-×:LDP man-pages:3.24:2009/03/30:pthread_equal:3:::::
-×:LDP man-pages:3.24:2009/03/30:pthread_exit:3:::::
-※:LDP man-pages:3.24:2008/11/27:pthread_getaffinity_np:3:pthread_setaffinity_np:3:
-×:LDP man-pages:3.24:2008/11/11:pthread_getattr_np:3:::::
-※:LDP man-pages:3.24:2009/04/10:pthread_getconcurrency:3:pthread_setconcurrency:3:
-×:LDP man-pages:3.24:2009/02/08:pthread_getcpuclockid:3:::::
-※:LDP man-pages:3.24:2008/11/17:pthread_getschedparam:3:pthread_setschedparam:3:
-×:LDP man-pages:3.24:2008/11/27:pthread_join:3:::::
-×:LDP man-pages:3.24:2009/01/28:pthread_kill:3:::::
-×:LDP man-pages:3.24:2009/01/28:pthread_kill_other_threads_np:3:::::
-×:LDP man-pages:3.24:2008/10/24:pthread_self:3:::::
-×:LDP man-pages:3.24:2008/11/27:pthread_setaffinity_np:3:::::
-×:LDP man-pages:3.24:2008/11/24:pthread_setcancelstate:3:::::
-※:LDP man-pages:3.24:2008/11/24:pthread_setcanceltype:3:pthread_setcancelstate:3:
-×:LDP man-pages:3.24:2009/04/10:pthread_setconcurrency:3:::::
-×:LDP man-pages:3.24:2008/11/17:pthread_setschedparam:3:::::
-×:LDP man-pages:3.24:2008/11/06:pthread_setschedprio:3:::::
-×:LDP man-pages:3.24:2009/01/25:pthread_sigmask:3:::::
-×:LDP man-pages:3.24:2008/11/17:pthread_testcancel:3:::::
-※:LDP man-pages:3.24:2008/11/11:pthread_timedjoin_np:3:pthread_tryjoin_np:3:
-×:LDP man-pages:3.24:2008/11/11:pthread_tryjoin_np:3:::::
-×:LDP man-pages:3.24:2009/04/10:pthread_yield:3:::::
-○:LDP man-pages:3.24:2008/09/03:ptsname:3:2005/03/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/09/03:ptsname_r:3:ptsname:3:
-@:LDP man-pages:3.24:1993/04/04:putc:3:puts:3:
-@:LDP man-pages:3.24:2008/08/29:putc_unlocked:3:unlocked_stdio:3:
-@:LDP man-pages:3.24:1993/04/04:putchar:3:puts:3:
-@:LDP man-pages:3.24:2008/08/29:putchar_unlocked:3:unlocked_stdio:3:
-○:LDP man-pages:3.24:2007/07/26:putenv:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.24:2003/09/09:putgrent:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2007/07/26:putpwent:3:1997/12/18::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
-○:LDP man-pages:3.24:1993/04/04:puts:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.24:2010/02/25:putspent:3:getspnam:3:
-@:LDP man-pages:3.24:2008/06/29:pututline:3:getutent:3:
-@:LDP man-pages:3.24:2008/06/29:pututxline:3:getutent:3:
-@:LDP man-pages:3.24:2007/12/20:putw:3:getw:3:
-@:LDP man-pages:3.24:1999/07/25:putwc:3:fputwc:3:
-@:LDP man-pages:3.24:2008/08/29:putwc_unlocked:3:unlocked_stdio:3:
-○:LDP man-pages:3.24:1999/07/25:putwchar:3:2001/11/09::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.24:2008/08/29:putwchar_unlocked:3:unlocked_stdio:3:
-○:LDP man-pages:3.24:2007/07/26:qecvt:3:2002/09/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2007/07/26:qecvt_r:3:ecvt_r:3:
-@:LDP man-pages:3.24:2007/07/26:qfcvt:3:qecvt:3:
-@:LDP man-pages:3.24:2007/07/26:qfcvt_r:3:ecvt_r:3:
-@:LDP man-pages:3.24:2007/07/26:qgcvt:3:qecvt:3:
-○:LDP man-pages:3.24:2009/09/15:qsort:3:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2007/12/28:queue:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2008/10/17:raise:3:1997/12/25::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
-○:LDP man-pages:3.24:2008/08/29:rand:3:2005/03/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/29:rand_r:3:rand:3:
-○:LDP man-pages:3.24:2009/02/03:random:3:1997/01/21::tyoshino@eng.toyo.ac.jp:YOSHINO Takashi:
-○:LDP man-pages:3.24:2008/03/07:random_r:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2009/12/04:rawmemchr:3:memchr:3:
-○:LDP man-pages:3.24:2007/12/28:rcmd:3:1999/03/01::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.24:1995/07/14:re_comp:3:1997/12/18::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
-@:LDP man-pages:3.24:1995/07/14:re_exec:3:re_comp:3:
-○:LDP man-pages:3.24:2009/07/04:readdir:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2009/07/04:readdir_r:3:readdir:3:
-@:LDP man-pages:3.24:2009/01/13:realloc:3:malloc:3:
-○:LDP man-pages:3.24:2009/02/23:realpath:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:1994/08/18:recno:3:1999/08/19::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-@:LDP man-pages:3.24:2008/05/29:regcomp:3:regex:3:
-@:LDP man-pages:3.24:2008/05/29:regerror:3:regex:3:
-○:LDP man-pages:3.24:2008/05/29:regex:3:2005/03/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/05/29:regexec:3:regex:3:
-@:LDP man-pages:3.24:2008/05/29:regfree:3:regex:3:
-@:LDP man-pages:3.24:2008/07/17:registerrpc:3:rpc:3:
-○:LDP man-pages:3.24:2009/02/04:remainder:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2009/02/04:remainderf:3:remainder:3:
-@:LDP man-pages:3.24:2009/02/04:remainderl:3:remainder:3:
-○:LDP man-pages:3.24:2008/12/03:remove:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.24:2008/07/11:remque:3:insque:3:
-○:LDP man-pages:3.24:2008/08/11:remquo:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/11:remquof:3:remquo:3:
-@:LDP man-pages:3.24:2008/08/11:remquol:3:remquo:3:
-@:LDP man-pages:3.24:2008/11/07:res_init:3:resolver:3:
-@:LDP man-pages:3.24:2008/11/07:res_mkquery:3:resolver:3:
-@:LDP man-pages:3.24:2008/11/07:res_query:3:resolver:3:
-@:LDP man-pages:3.24:2008/11/07:res_querydomain:3:resolver:3:
-@:LDP man-pages:3.24:2008/11/07:res_search:3:resolver:3:
-@:LDP man-pages:3.24:2008/11/07:res_send:3:resolver:3:
-○:LDP man-pages:3.24:2008/11/07:resolver:3:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.24:1993/11/29:rewind:3:fseek:3:
-○:LDP man-pages:3.24:1995/06/11:rewinddir:3:1997/12/24::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
-○:LDP man-pages:3.24:2007/12/28:rexec:3:2005/12/28::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2009/03/15:rindex:3:index:3:
-○:LDP man-pages:3.24:2008/08/05:rint:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/05:rintf:3:rint:3:
-@:LDP man-pages:3.24:2008/08/05:rintl:3:rint:3:
-○:LDP man-pages:3.24:2008/08/11:round:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/11:roundf:3:round:3:
-@:LDP man-pages:3.24:2008/08/11:roundl:3:round:3:
-○:LDP man-pages:3.24:2008/07/17:rpc:3:2001/11/09::ysato@h4.dion.ne.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2007/07/26:rpmatch:3:2006/07/31::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2007/12/28:rresvport:3:rcmd:3:
-○:LDP man-pages:3.24:2010/02/25:rtime:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2010/01/11:rtnetlink:3:1999/08/20::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-@:LDP man-pages:3.24:2007/12/28:ruserok:3:rcmd:3:
-○:LDP man-pages:3.24:2009/03/15:scalb:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2009/03/15:scalbf:3:scalb:3:
-@:LDP man-pages:3.24:2009/03/15:scalbl:3:scalb:3:
-×:LDP man-pages:3.24:2008/08/11:scalbln:3:::::
-※:LDP man-pages:3.24:2008/08/11:scalblnf:3:scalbln:3:
-※:LDP man-pages:3.24:2008/08/11:scalblnl:3:scalbln:3:
-※:LDP man-pages:3.24:2008/08/11:scalbn:3:scalbln:3:
-※:LDP man-pages:3.24:2008/08/11:scalbnf:3:scalbln:3:
-※:LDP man-pages:3.24:2008/08/11:scalbnl:3:scalbln:3:
-○:LDP man-pages:3.24:2009/02/10:scandir:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/07/12:scanf:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2009/12/08:sched_getcpu:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2007/07/26:seed48:3:drand48:3:
-@:LDP man-pages:3.24:2007/07/26:seed48_r:3:drand48_r:3:
-○:LDP man-pages:3.24:2009/03/11:seekdir:3:1997/12/24::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
-○:LDP man-pages:3.24:2006/03/25:sem_close:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2006/03/25:sem_destroy:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2006/03/25:sem_getvalue:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/07/27:sem_init:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2009/02/20:sem_open:3:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2009/03/30:sem_post:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2010/02/25:sem_timedwait:3:sem_wait:3:
-@:LDP man-pages:3.24:2010/02/25:sem_trywait:3:sem_wait:3:
-○:LDP man-pages:3.24:2006/03/25:sem_unlink:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2010/02/25:sem_wait:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2003/09/09:setaliasent:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2008/06/26:setbuf:3:2001/07/14::ysato@h4.dion.ne.jp:Yuichi SATO:
-@:LDP man-pages:3.24:2008/06/26:setbuffer:3:setbuf:3:
-○:LDP man-pages:3.24:2009/09/20:setenv:3:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.24:2002/02/28:setfsent:3:getfsent:3:
-@:LDP man-pages:3.24:2009/03/30:setgrent:3:getgrent:3:
-@:LDP man-pages:3.24:2009/12/03:sethostent:3:gethostbyname:3:
-@:LDP man-pages:3.24:2009/01/13:sethostid:3:gethostid:3:
-○:LDP man-pages:3.24:2009/06/26:setjmp:3:2009/03/05::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.24:2003/04/04:setkey:3:encrypt:3:
-@:LDP man-pages:3.24:2003/04/04:setkey_r:3:encrypt:3:
-@:LDP man-pages:3.24:2008/06/26:setlinebuf:3:setbuf:3:
-○:LDP man-pages:3.24:2008/12/05:setlocale:3:2002/10/12::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.24:2001/10/05:setlogmask:3:2001/11/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2009/09/15:setmntent:3:getmntent:3:
-@:LDP man-pages:3.24:2008/08/19:setnetent:3:getnetent:3:
-○:LDP man-pages:3.24:2007/07/26:setnetgrent:3:2005/03/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/19:setprotoent:3:getprotoent:3:
-@:LDP man-pages:3.24:2009/03/30:setpwent:3:getpwent:3:
-@:LDP man-pages:3.24:2008/08/19:setrpcent:3:getrpcent:3:
-@:LDP man-pages:3.24:2008/08/19:setservent:3:getservent:3:
-@:LDP man-pages:3.24:2010/02/25:setspent:3:getspnam:3:
-@:LDP man-pages:3.24:2009/02/03:setstate:3:random:3:
-@:LDP man-pages:3.24:2008/03/07:setstate_r:3:random_r:3:
-@:LDP man-pages:3.24:2002/07/18:setttyent:3:getttyent:3:
-@:LDP man-pages:3.24:2007/07/26:setusershell:3:getusershell:3:
-@:LDP man-pages:3.24:2008/06/29:setutent:3:getutent:3:
-@:LDP man-pages:3.24:2008/06/29:setutxent:3:getutent:3:
-@:LDP man-pages:3.24:2008/06/26:setvbuf:3:setbuf:3:
-@:LDP man-pages:3.24:2010/02/25:sgetspent:3:getspnam:3:
-@:LDP man-pages:3.24:2010/02/25:sgetspent_r:3:getspnam:3:
-○:LDP man-pages:3.24:2009/02/25:shm_open:3:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2009/02/25:shm_unlink:3:shm_open:3:
-@:LDP man-pages:3.24:2008/09/01:sigaddset:3:sigsetops:3:
-@:LDP man-pages:3.24:2008/09/01:sigandset:3:sigsetops:3:
-@:LDP man-pages:3.24:2007/07/26:sigblock:3:sigvec:3:
-@:LDP man-pages:3.24:2008/09/01:sigdelset:3:sigsetops:3:
-@:LDP man-pages:3.24:2008/09/01:sigemptyset:3:sigsetops:3:
-@:LDP man-pages:3.24:2008/09/01:sigfillset:3:sigsetops:3:
-@:LDP man-pages:3.24:2007/07/26:siggetmask:3:sigvec:3:
-@:LDP man-pages:3.24:2009/03/15:sighold:3:sigset:3:
-@:LDP man-pages:3.24:2009/03/15:sigignore:3:sigset:3:
-○:LDP man-pages:3.24:2009/03/15:siginterrupt:3:1998/05/24::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-@:LDP man-pages:3.24:2008/09/01:sigisemptyset:3:sigsetops:3:
-@:LDP man-pages:3.24:2008/09/01:sigismember:3:sigsetops:3:
-@:LDP man-pages:3.24:2009/01/13:siglongjmp:3:longjmp:3:
-@:LDP man-pages:3.24:2007/07/26:sigmask:3:sigvec:3:
-○:LDP man-pages:3.24:2008/08/05:signbit:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/05:signgam:3:lgamma:3:
-○:LDP man-pages:3.24:2009/02/04:significand:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.24:2009/02/04:significandf:3:significand:3:
-@:LDP man-pages:3.24:2009/02/04:significandl:3:significand:3:
-@:LDP man-pages:3.24:2008/09/01:sigorset:3:sigsetops:3:
-○:LDP man-pages:3.24:2005/12/01:sigpause:3:2005/12/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2009/03/15:sigrelse:3:sigset:3:
-○:LDP man-pages:3.24:2009/03/15:sigset:3:2005/12/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2009/06/26:sigsetjmp:3:setjmp:3:
-@:LDP man-pages:3.24:2007/07/26:sigsetmask:3:sigvec:3:
-○:LDP man-pages:3.24:2008/09/01:sigsetops:3:2005/12/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2007/07/26:sigvec:3:2005/12/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2009/02/10:sigwait:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2009/02/04:sin:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/08/11:sincos:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/11:sincosf:3:sincos:3:
-@:LDP man-pages:3.24:2008/08/11:sincosl:3:sincos:3:
-@:LDP man-pages:3.24:2009/02/04:sinf:3:sin:3:
-○:LDP man-pages:3.24:2008/08/05:sinh:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/05:sinhf:3:sinh:3:
-@:LDP man-pages:3.24:2008/08/05:sinhl:3:sinh:3:
-@:LDP man-pages:3.24:2009/02/04:sinl:3:sin:3:
-○:LDP man-pages:3.24:2010/02/03:sleep:3:1997/01/21::tyoshino@eng.toyo.ac.jp:YOSHINO Takashi:
-@:LDP man-pages:3.24:2008/12/19:snprintf:3:printf:3:
-○:LDP man-pages:3.24:2008/12/03:sockatmark:3:2006/08/19::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.24:2008/12/19:sprintf:3:printf:3:
-○:LDP man-pages:3.24:2008/08/05:sqrt:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/05:sqrtf:3:sqrt:3:
-@:LDP man-pages:3.24:2008/08/05:sqrtl:3:sqrt:3:
-@:LDP man-pages:3.24:2008/08/29:srand:3:rand:3:
-@:LDP man-pages:3.24:2007/07/26:srand48:3:drand48:3:
-@:LDP man-pages:3.24:2007/07/26:srand48_r:3:drand48_r:3:
-@:LDP man-pages:3.24:2009/02/03:srandom:3:random:3:
-@:LDP man-pages:3.24:2008/03/07:srandom_r:3:random_r:3:
-@:LDP man-pages:3.24:2008/07/12:sscanf:3:scanf:3:
-@:LDP man-pages:3.24:2007/07/26:ssignal:3:gsignal:3:
-○:LDP man-pages:3.24:2001/10/14:stdarg:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.24:2008/07/14:stderr:3:stdin:3:
-○:LDP man-pages:3.24:2008/07/14:stdin:3:2005/09/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2001/12/26:stdio:3:2004/02/06::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2001/12/16:stdio_ext:3:2002/08/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/07/14:stdout:3:stdin:3:
-○:LDP man-pages:3.24:2009/02/04:stpcpy:3:1997/12/26::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
-○:LDP man-pages:3.24:1999/07/25:stpncpy:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-○:LDP man-pages:3.24:1993/04/11:strcasecmp:3:1997/12/25::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
-@:LDP man-pages:3.24:2005/04/05:strcasestr:3:strstr:3:
-○:LDP man-pages:3.24:2008/06/13:strcat:3:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2008/08/11:strchr:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/11:strchrnul:3:strchr:3:
-○:LDP man-pages:3.24:2009/04/21:strcmp:3:2001/10/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:1993/04/12:strcoll:3:2007/06/01::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2009/12/04:strcpy:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.24:1993/04/12:strcspn:3:strspn:3:
-○:LDP man-pages:3.24:2007/07/26:strdup:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.24:2007/07/26:strdupa:3:strdup:3:
-○:LDP man-pages:3.24:2009/03/30:strerror:3:2005/12/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2009/03/30:strerror_r:3:strerror:3:
-○:LDP man-pages:3.24:2000/12/05:strfmon:3:2001/02/14::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.24:1993/04/12:strfry:3:1998/05/25::motoki@hal.t.u-tokyo.ac.jp:Akihiro Motoki:
-○:LDP man-pages:3.24:2010/01/17:strftime:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2010/02/25:string:3:1997/01/20::yoshino@civil.jcn.nihon-u.ac.jp:YOSHINO Takashi:
-○:LDP man-pages:3.24:1993/04/12:strlen:3:1997/01/20::tyoshino@eng.toyo.ac.jp:YOSHINO Takashi:
-@:LDP man-pages:3.24:1993/04/11:strncasecmp:3:strcasecmp:3:
-@:LDP man-pages:3.24:2008/06/13:strncat:3:strcat:3:
-@:LDP man-pages:3.24:2009/04/21:strncmp:3:strcmp:3:
-@:LDP man-pages:3.24:2009/12/04:strncpy:3:strcpy:3:
-@:LDP man-pages:3.24:2007/07/26:strndup:3:strdup:3:
-@:LDP man-pages:3.24:2007/07/26:strndupa:3:strdup:3:
-○:LDP man-pages:3.24:1999/07/25:strnlen:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-○:LDP man-pages:3.24:1993/04/12:strpbrk:3:1999/12/25::argrath@yo.rim.or.jp:Kentaro Shirakata:
-○:LDP man-pages:3.24:2009/12/05:strptime:3:2002/01/14::ysato@h4.dion.ne.jp:Yuichi SATO:
-@:LDP man-pages:3.24:2008/08/11:strrchr:3:strchr:3:
-○:LDP man-pages:3.24:2009/01/16:strsep:3:2009/03/05::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.24:1999/02/08:strsignal:3:1999/12/25::argrath@yo.rim.or.jp:Kentaro Shirakata:
-○:LDP man-pages:3.24:1993/04/12:strspn:3:1997/12/16::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
-○:LDP man-pages:3.24:2005/04/05:strstr:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.24:2007/07/26:strtod:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2007/07/26:strtof:3:strtod:3:
-○:LDP man-pages:3.24:2003/11/28:strtoimax:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2008/10/29:strtok:3:2005/11/19:o:amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/10/29:strtok_r:3:strtok:3:
-○:LDP man-pages:3.24:2007/07/26:strtol:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2007/07/26:strtold:3:strtod:3:
-@:LDP man-pages:3.24:2007/07/26:strtoll:3:strtol:3:
-@:LDP man-pages:3.24:2007/07/26:strtoq:3:strtol:3:
-○:LDP man-pages:3.24:2007/07/26:strtoul:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2007/07/26:strtoull:3:strtoul:3:
-@:LDP man-pages:3.24:2003/11/28:strtoumax:3:strtoimax:3:
-@:LDP man-pages:3.24:2007/07/26:strtouq:3:strtoul:3:
-○:LDP man-pages:3.24:2001/12/19:strverscmp:3:2002/09/22::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:1993/04/12:strxfrm:3:1999/03/24::ss236rx@ymg.urban.ne.jp:Shouichi Saito:
-@:LDP man-pages:3.24:2008/07/17:svc_destroy:3:rpc:3:
-@:LDP man-pages:3.24:2008/07/17:svc_freeargs:3:rpc:3:
-@:LDP man-pages:3.24:2008/07/17:svc_getargs:3:rpc:3:
-@:LDP man-pages:3.24:2008/07/17:svc_getcaller:3:rpc:3:
-@:LDP man-pages:3.24:2008/07/17:svc_getreq:3:rpc:3:
-@:LDP man-pages:3.24:2008/07/17:svc_getreqset:3:rpc:3:
-@:LDP man-pages:3.24:2008/07/17:svc_register:3:rpc:3:
-@:LDP man-pages:3.24:2008/07/17:svc_run:3:rpc:3:
-@:LDP man-pages:3.24:2008/07/17:svc_sendreply:3:rpc:3:
-@:LDP man-pages:3.24:2008/07/17:svc_unregister:3:rpc:3:
-@:LDP man-pages:3.24:2008/07/17:svcerr_auth:3:rpc:3:
-@:LDP man-pages:3.24:2008/07/17:svcerr_decode:3:rpc:3:
-@:LDP man-pages:3.24:2008/07/17:svcerr_noproc:3:rpc:3:
-@:LDP man-pages:3.24:2008/07/17:svcerr_noprog:3:rpc:3:
-@:LDP man-pages:3.24:2008/07/17:svcerr_progvers:3:rpc:3:
-@:LDP man-pages:3.24:2008/07/17:svcerr_systemerr:3:rpc:3:
-@:LDP man-pages:3.24:2008/07/17:svcerr_weakauth:3:rpc:3:
-@:LDP man-pages:3.24:2008/07/17:svcfd_create:3:rpc:3:
-@:LDP man-pages:3.24:2008/07/17:svcraw_create:3:rpc:3:
-@:LDP man-pages:3.24:2008/07/17:svctcp_create:3:rpc:3:
-@:LDP man-pages:3.24:2008/07/17:svcudp_bufcreate:3:rpc:3:
-@:LDP man-pages:3.24:2008/07/17:svcudp_create:3:rpc:3:
-○:LDP man-pages:3.24:2001/12/15:swab:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.24:2009/03/31:swapcontext:3:makecontext:3:
-@:LDP man-pages:3.24:2007/07/26:swprintf:3:wprintf:3:
-@:LDP man-pages:3.24:2007/07/26:sys_errlist:3:perror:3:
-@:LDP man-pages:3.24:2007/07/26:sys_nerr:3:perror:3:
-○:LDP man-pages:3.24:2007/12/12:sysconf:3:2005/03/31::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/11/12:syslog:3:2008/07/24:o:argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.24:2004/12/20:system:3:2005/03/12:o:amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2007/05/04:sysv_signal:3:2007/06/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/08/05:tan:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/05:tanf:3:tan:3:
-○:LDP man-pages:3.24:2008/08/05:tanh:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/05:tanhf:3:tanh:3:
-@:LDP man-pages:3.24:2008/08/05:tanhl:3:tanh:3:
-@:LDP man-pages:3.24:2008/08/05:tanl:3:tan:3:
-@:LDP man-pages:3.24:2007/11/26:tcdrain:3:termios:3:
-@:LDP man-pages:3.24:2007/11/26:tcflow:3:termios:3:
-@:LDP man-pages:3.24:2007/11/26:tcflush:3:termios:3:
-@:LDP man-pages:3.24:2007/11/26:tcgetattr:3:termios:3:
-○:LDP man-pages:3.24:2003/01/28:tcgetpgrp:3:2003/08/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/06/14:tcgetsid:3:2003/08/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2007/11/26:tcsendbreak:3:termios:3:
-@:LDP man-pages:3.24:2007/11/26:tcsetattr:3:termios:3:
-@:LDP man-pages:3.24:2003/01/28:tcsetpgrp:3:tcgetpgrp:3:
-@:LDP man-pages:3.24:2008/09/23:tdelete:3:tsearch:3:
-@:LDP man-pages:3.24:2008/09/23:tdestroy:3:tsearch:3:
-○:LDP man-pages:3.24:2009/03/11:telldir:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2007/07/26:tempnam:3:2006/07/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2007/11/26:termios:3:2007/05/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/09/23:tfind:3:tsearch:3:
-○:LDP man-pages:3.24:2008/08/11:tgamma:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/11:tgammaf:3:tgamma:3:
-@:LDP man-pages:3.24:2008/08/11:tgammal:3:tgamma:3:
-○:LDP man-pages:3.24:2007/07/26:timegm:3:2002/01/14::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-@:LDP man-pages:3.24:2007/07/26:timelocal:3:timegm:3:
-○:LDP man-pages:3.24:2010/02/25:timeradd:3:2007/10/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2010/02/25:timerclear:3:timeradd:3:
-@:LDP man-pages:3.24:2010/02/25:timercmp:3:timeradd:3:
-@:LDP man-pages:3.24:2010/02/25:timerisset:3:timeradd:3:
-@:LDP man-pages:3.24:2010/02/25:timersub:3:timeradd:3:
-@:LDP man-pages:3.24:2010/02/25:timezone:3:tzset:3:
-○:LDP man-pages:3.24:2008/07/14:tmpfile:3:2001/12/14:o:ysato@h4.dion.ne.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2003/11/15:tmpnam:3:2006/07/26:o:amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2003/11/15:tmpnam_r:3:tmpnam:3:
-○:LDP man-pages:3.24:2009/03/15:toascii:3:1997/12/16::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
-@:LDP man-pages:3.24:1993/04/04:tolower:3:toupper:3:
-○:LDP man-pages:3.24:1993/04/04:toupper:3:1997/04/29::rui@linux.or.jp:Ueyama Rui:
-○:LDP man-pages:3.24:1999/07/25:towctrans:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.24:1999/07/25:towlower:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.24:1999/07/25:towupper:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.24:2008/08/11:trunc:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/11:truncf:3:trunc:3:
-@:LDP man-pages:3.24:2008/08/11:truncl:3:trunc:3:
-○:LDP man-pages:3.24:2008/09/23:tsearch:3:2002/02/14::ysato@h4.dion.ne.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2008/07/14:ttyname:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.24:2008/07/14:ttyname_r:3:ttyname:3:
-○:LDP man-pages:3.24:2007/11/26:ttyslot:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.24:2008/09/23:twalk:3:tsearch:3:
-@:LDP man-pages:3.24:2010/02/25:tzname:3:tzset:3:
-○:LDP man-pages:3.24:2010/02/25:tzset:3:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/08/06:ualarm:3:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2010/02/25:ulckpwdf:3:getspnam:3:
-○:LDP man-pages:3.24:2008/08/06:ulimit:3:1998/12/06::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.24:2010/02/10:undocumented:3:2005/02/21::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/06:ungetc:3:gets:3:
-○:LDP man-pages:3.24:1999/09/19:ungetwc:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-○:LDP man-pages:3.24:2008/08/29:unlocked_stdio:3:2001/11/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/06/14:unlockpt:3:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2009/09/20:unsetenv:3:setenv:3:
-○:LDP man-pages:3.24:2008/07/02:updwtmp:3:2008/10/08::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.24:2008/07/02:updwtmpx:3:updwtmp:3:
-○:LDP man-pages:3.24:2007/07/26:usleep:3:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/06/29:utmpname:3:getutent:3:
-@:LDP man-pages:3.24:2008/06/29:utmpxname:3:getutent:3:
-@:LDP man-pages:3.24:2001/10/14:va_arg:3:stdarg:3:
-@:LDP man-pages:3.24:2001/10/14:va_copy:3:stdarg:3:
-@:LDP man-pages:3.24:2001/10/14:va_end:3:stdarg:3:
-@:LDP man-pages:3.24:2001/10/14:va_start:3:stdarg:3:
-@:LDP man-pages:3.24:2009/03/30:valloc:3:posix_memalign:3:
-@:LDP man-pages:3.24:2001/12/18:vasprintf:3:asprintf:3:
-@:LDP man-pages:3.24:2008/06/14:vdprintf:3:dprintf:3:
-@:LDP man-pages:3.24:2007/12/28:verr:3:err:3:
-@:LDP man-pages:3.24:2007/12/28:verrx:3:err:3:
-@:LDP man-pages:3.24:2009/02/10:versionsort:3:scandir:3:
-@:LDP man-pages:3.24:2008/12/19:vfprintf:3:printf:3:
-@:LDP man-pages:3.24:2008/07/12:vfscanf:3:scanf:3:
-@:LDP man-pages:3.24:2007/07/26:vfwprintf:3:wprintf:3:
-@:LDP man-pages:3.24:2008/12/19:vprintf:3:printf:3:
-@:LDP man-pages:3.24:2008/07/12:vscanf:3:scanf:3:
-@:LDP man-pages:3.24:2008/12/19:vsnprintf:3:printf:3:
-@:LDP man-pages:3.24:2008/12/19:vsprintf:3:printf:3:
-@:LDP man-pages:3.24:2008/07/12:vsscanf:3:scanf:3:
-@:LDP man-pages:3.24:2007/07/26:vswprintf:3:wprintf:3:
-@:LDP man-pages:3.24:2008/11/12:vsyslog:3:syslog:3:
-@:LDP man-pages:3.24:2007/12/28:vwarn:3:err:3:
-@:LDP man-pages:3.24:2007/12/28:vwarnx:3:err:3:
-@:LDP man-pages:3.24:2007/07/26:vwprintf:3:wprintf:3:
-@:LDP man-pages:3.24:2007/12/28:warn:3:err:3:
-@:LDP man-pages:3.24:2007/12/28:warnx:3:err:3:
-○:LDP man-pages:3.24:1999/07/25:wcpcpy:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.24:2003/11/01:wcpncpy:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.24:1999/07/25:wcrtomb:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.24:2009/02/04:wcscasecmp:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.24:1999/07/25:wcscat:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.24:1999/07/25:wcschr:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.24:1999/07/25:wcscmp:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.24:1999/07/25:wcscpy:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.24:1999/07/25:wcscspn:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.24:2009/02/04:wcsdup:3:2004/06/13::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:1999/07/25:wcslen:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.24:2009/02/04:wcsncasecmp:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.24:1999/07/25:wcsncat:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.24:1999/07/25:wcsncmp:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.24:1999/07/25:wcsncpy:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.24:2007/07/26:wcsnlen:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.24:2007/07/26:wcsnrtombs:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.24:1999/07/25:wcspbrk:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.24:1999/07/25:wcsrchr:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.24:1999/07/25:wcsrtombs:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.24:1999/07/25:wcsspn:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.24:1999/07/25:wcsstr:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.24:2003/11/01:wcstoimax:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:1999/07/25:wcstok:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.24:1999/07/25:wcstombs:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-@:LDP man-pages:3.24:2003/11/01:wcstoumax:3:wcstoimax:3:
-○:LDP man-pages:3.24:2007/07/26:wcswidth:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.24:2009/02/04:wctob:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.24:1999/07/25:wctomb:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-○:LDP man-pages:3.24:1999/07/25:wctrans:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.24:1999/07/25:wctype:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.24:1999/07/25:wcwidth:3:2002/08/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:1999/07/25:wmemchr:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.24:1999/07/25:wmemcmp:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.24:1999/07/25:wmemcpy:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.24:1999/07/25:wmemmove:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-@:LDP man-pages:3.24:2008/08/12:wmempcpy:3:mempcpy:3:
-○:LDP man-pages:3.24:1999/07/25:wmemset:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
-○:LDP man-pages:3.24:2008/07/14:wordexp:3:2004/09/29::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.24:2008/07/14:wordfree:3:wordexp:3:
-○:LDP man-pages:3.24:2007/07/26:wprintf:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-○:LDP man-pages:3.24:2003/04/04:xcrypt:3:2004/10/16::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.24:2003/04/04:xdecrypt:3:xcrypt:3:
-○:LDP man-pages:3.24:2007/12/30:xdr:3:2000/01/14::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-@:LDP man-pages:3.24:2008/07/17:xdr_accepted_reply:3:rpc:3:
-@:LDP man-pages:3.24:2007/12/30:xdr_array:3:xdr:3:
-@:LDP man-pages:3.24:2008/07/17:xdr_authunix_parms:3:rpc:3:
-@:LDP man-pages:3.24:2007/12/30:xdr_bool:3:xdr:3:
-@:LDP man-pages:3.24:2007/12/30:xdr_bytes:3:xdr:3:
-@:LDP man-pages:3.24:2008/07/17:xdr_callhdr:3:rpc:3:
-@:LDP man-pages:3.24:2008/07/17:xdr_callmsg:3:rpc:3:
-@:LDP man-pages:3.24:2007/12/30:xdr_char:3:xdr:3:
-@:LDP man-pages:3.24:2007/12/30:xdr_destroy:3:xdr:3:
-@:LDP man-pages:3.24:2007/12/30:xdr_double:3:xdr:3:
-@:LDP man-pages:3.24:2007/12/30:xdr_enum:3:xdr:3:
-@:LDP man-pages:3.24:2007/12/30:xdr_float:3:xdr:3:
-@:LDP man-pages:3.24:2007/12/30:xdr_free:3:xdr:3:
-@:LDP man-pages:3.24:2007/12/30:xdr_getpos:3:xdr:3:
-@:LDP man-pages:3.24:2007/12/30:xdr_inline:3:xdr:3:
-@:LDP man-pages:3.24:2007/12/30:xdr_int:3:xdr:3:
-@:LDP man-pages:3.24:2007/12/30:xdr_long:3:xdr:3:
-@:LDP man-pages:3.24:2007/12/30:xdr_opaque:3:xdr:3:
-@:LDP man-pages:3.24:2008/07/17:xdr_opaque_auth:3:rpc:3:
-@:LDP man-pages:3.24:2008/07/17:xdr_pmap:3:rpc:3:
-@:LDP man-pages:3.24:2008/07/17:xdr_pmaplist:3:rpc:3:
-@:LDP man-pages:3.24:2007/12/30:xdr_pointer:3:xdr:3:
-@:LDP man-pages:3.24:2007/12/30:xdr_reference:3:xdr:3:
-@:LDP man-pages:3.24:2008/07/17:xdr_rejected_reply:3:rpc:3:
-@:LDP man-pages:3.24:2008/07/17:xdr_replymsg:3:rpc:3:
-@:LDP man-pages:3.24:2007/12/30:xdr_setpos:3:xdr:3:
-@:LDP man-pages:3.24:2007/12/30:xdr_short:3:xdr:3:
-@:LDP man-pages:3.24:2007/12/30:xdr_string:3:xdr:3:
-@:LDP man-pages:3.24:2007/12/30:xdr_u_char:3:xdr:3:
-@:LDP man-pages:3.24:2007/12/30:xdr_u_int:3:xdr:3:
-@:LDP man-pages:3.24:2007/12/30:xdr_u_long:3:xdr:3:
-@:LDP man-pages:3.24:2007/12/30:xdr_u_short:3:xdr:3:
-@:LDP man-pages:3.24:2007/12/30:xdr_union:3:xdr:3:
-@:LDP man-pages:3.24:2007/12/30:xdr_vector:3:xdr:3:
-@:LDP man-pages:3.24:2007/12/30:xdr_void:3:xdr:3:
-@:LDP man-pages:3.24:2007/12/30:xdr_wrapstring:3:xdr:3:
-@:LDP man-pages:3.24:2007/12/30:xdrmem_create:3:xdr:3:
-@:LDP man-pages:3.24:2007/12/30:xdrrec_create:3:xdr:3:
-@:LDP man-pages:3.24:2007/12/30:xdrrec_endofrecord:3:xdr:3:
-@:LDP man-pages:3.24:2007/12/30:xdrrec_eof:3:xdr:3:
-@:LDP man-pages:3.24:2007/12/30:xdrrec_skiprecord:3:xdr:3:
-@:LDP man-pages:3.24:2007/12/30:xdrstdio_create:3:xdr:3:
-@:LDP man-pages:3.24:2003/04/04:xencrypt:3:xcrypt:3:
-@:LDP man-pages:3.24:2008/07/17:xprt_register:3:rpc:3:
-@:LDP man-pages:3.24:2008/07/17:xprt_unregister:3:rpc:3:
-○:LDP man-pages:3.24:2008/08/10:y0:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/08/10:y0f:3:y0:3:
-@:LDP man-pages:3.24:2008/08/10:y0l:3:y0:3:
-@:LDP man-pages:3.24:2008/08/10:y1:3:y0:3:
-@:LDP man-pages:3.24:2008/08/10:y1f:3:y0:3:
-@:LDP man-pages:3.24:2008/08/10:y1l:3:y0:3:
-@:LDP man-pages:3.24:2008/08/10:yn:3:y0:3:
-@:LDP man-pages:3.24:2008/08/10:ynf:3:y0:3:
-@:LDP man-pages:3.24:2008/08/10:ynl:3:y0:3:
-○:LDP man-pages:3.24:1994/10/31:console:4:2002/01/14:o:argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.24:2008/01/01:console_codes:4:2008/10/08::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.24:2009/02/28:console_ioctl:4:2008/07/22::argrath@ub32.org:Kentaro Shirakata:
-×:LDP man-pages:3.24:2009/03/31:cpuid:4:::::
-○:LDP man-pages:3.24:2000/03/01:dsp56k:4:2000/07/11::sato@complex.eng.hokudai.ac.jp:Yuichi SATO:
-@:LDP man-pages:3.24:2009/02/01:epoll:4:epoll:7:
-○:LDP man-pages:3.24:1995/01/29:fd:4:1998/01/12:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi:
-@:LDP man-pages:3.24:2008/12/03:fifo:4:fifo:7:
-○:LDP man-pages:3.24:1997/08/02:full:4:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2002/12/31:futex:4:futex:7:
-○:LDP man-pages:3.24:1992/12/17:hd:4:1998/02/05:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi:
-○:LDP man-pages:3.24:2009/04/04:initrd:4:2005/10/09:o:amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2007/10/23:intro:4:1998/02/05:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi:
-@:LDP man-pages:3.24:1992/11/21:kmem:4:mem:4:
-○:LDP man-pages:3.24:1995/01/15:lp:4:1998/02/05:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi:
-○:LDP man-pages:3.24:1992/11/21:mem:4:1998/02/05:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi:
-○:LDP man-pages:3.24:1996/02/10:mouse:4:1999/03/24:o:ss236rx@ymg.urban.ne.jp:Shouichi Saito:
-×:LDP man-pages:3.24:2009/03/31:msr:4:::::
-○:LDP man-pages:3.24:2009/02/23:null:4:1998/02/05:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi:
-@:LDP man-pages:3.24:1992/11/21:port:4:mem:4:
-@:LDP man-pages:3.24:2002/10/09:ptmx:4:pts:4:
-○:LDP man-pages:3.24:2002/10/09:pts:4:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:1992/11/21:ram:4:1997/01/12:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi:
-○:LDP man-pages:3.24:2008/06/20:random:4:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2010/02/25:rtc:4:2007/02/08::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:1992/12/17:sd:4:1998/02/05::ishikawa@linux.or.jp:ISHIKAWA Mutsumi:
-○:LDP man-pages:3.24:2007/11/25:sk98lin:4:2007/06/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2007/12/16:st:4:2005/06/12::nakano@st.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.24:2003/04/07:tty:4:2003/09/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:1992/12/19:ttyS:4:1998/02/05::ishikawa@linux.or.jp:ISHIKAWA Mutsumi:
-○:LDP man-pages:3.24:2008/10/29:tty_ioctl:4:2004/11/16::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.24:2008/06/20:urandom:4:random:4:
-○:LDP man-pages:3.24:2007/12/17:vcs:4:2001/02/11::sato@complex.eng.hokudai.ac.jp:Yuichi SATO:
-@:LDP man-pages:3.24:2007/12/17:vcsa:4:vcs:4:
-○:LDP man-pages:3.24:1996/10/22:wavelan:4:1998/02/10::ishikawa@linux.or.jp:ISHIKAWA Mutsumi:
-@:LDP man-pages:3.24:2009/02/23:zero:4:null:4:
-○:LDP man-pages:3.24:2008/06/15:acct:5:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:1994/11/28:charmap:5:2008/07/22::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.24:2009/07/25:complex:5:complex:7:
-○:LDP man-pages:3.24:2010/02/25:core:5:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2001/12/26:dir_colors:5:2002/01/14::ysato@h4.dion.ne.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2007/12/28:elf:5:2005/11/03::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.24:2009/07/25:environ:5:environ:7:
-○:LDP man-pages:3.24:2007/12/14:filesystems:5:2008/02/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2007/12/14:fs:5:filesystems:5:
-○:LDP man-pages:3.24:2000/08/27:ftpusers:5:2001/03/12::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.24:2009/10/17:group:5:2005/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2003/08/23:host.conf:5:2003/10/15::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2002/06/16:hosts:5:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2003/08/24:hosts.equiv:5:2005/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2007/10/23:intro:5:1998/10/13::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-@:LDP man-pages:3.24:2009/01/26:ipc:5:svipc:7:
-○:LDP man-pages:3.24:1993/07/24:issue:5:1998/07/25::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.24:2008/06/17:locale:5:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:1992/12/29:motd:5:1998/2/4::nagoya@cc.hit-u.ac.jp:Hiroaki Nagoya:
-×:LDP man-pages:3.24:2008/09/04:networks:5:::::
-○:LDP man-pages:3.24:1992/12/29:nologin:5:1998/02/18::rui@linux.or.jp:Ueyama Rui:
-○:LDP man-pages:3.24:1999/10/01:nscd.conf:5:2006/07/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:1999/01/17:nsswitch.conf:5:2001/10/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-※:LDP man-pages:3.24:2008/08/15:numa_maps:5:numa:7:
-○:LDP man-pages:3.24:1998/01/05:passwd:5:2006/07/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2009/09/30:proc:5:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/09/23:protocols:5:2008/07/22::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.24:2009/03/01:resolv.conf:5:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2009/03/01:resolver:5:resolv.conf:5:
-○:LDP man-pages:3.24:1985/09/26:rpc:5:2008/07/22::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.24:1992/12/29:securetty:5:2003/01/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/09/23:services:5:2002/08/14::amotoki@dd.iij4u.or.jp:Akihiro Motoki:
-○:LDP man-pages:3.24:1993/11/21:shells:5:2000/12/11::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.24:2001/06/19:slabinfo:5:2001/09/10::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.24:1996/10/21:termcap:5:2000/10/12::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.24:1993/07/24:ttytype:5:1998/02/10::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.24:1996/06/05:tzfile:5:1999/09/14::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.24:2008/10/10:utmp:5:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2008/10/10:utmpx:5:utmp:5:
-@:LDP man-pages:3.24:2008/10/10:wtmp:5:utmp:5:
-○:LDP man-pages:3.24:2007/10/23:intro:6:1997/11/15::pessi@kmc.kyoto-u.ac.jp:II Ryouta:
-×:LDP man-pages:3.24:2009/01/21:armscii-8:7:::::
-○:LDP man-pages:3.24:2008/11/25:arp:7:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2009/02/12:ascii:7:2006/04/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2007/06/03:boot:7:2005/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2007/12/16:bootparam:7:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2010/01/31:capabilities:7:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/06/03:charsets:7:2008/07/22::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.24:2009/07/25:complex:7:2006/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-×:LDP man-pages:3.24:2009/01/15:cp1251:7:::::
-×:LDP man-pages:3.24:2008/11/12:cpuset:7:::::
-○:LDP man-pages:3.24:2008/06/03:credentials:7:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/11/20:ddp:7:1999/12/06::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.24:2009/07/25:environ:7:2006/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2009/02/01:epoll:7:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2009/12/13:feature_test_macros:7:2007/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/12/03:fifo:7:2006/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2002/12/31:futex:7:2006/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-※:LDP man-pages:3.24:2009/01/13:glibc:7:libc:7:
-○:LDP man-pages:3.24:2003/08/24:glob:7:2003/09/28::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.24:2009/03/30:hier:7:2002/01/14::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-×:LDP man-pages:3.24:2008/06/11:hostname:7:::::
-○:LDP man-pages:3.24:2010/02/25:icmp:7:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/11/18:inotify:7:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:1993/04/23:intro:7:2005/12/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2009/02/28:ip:7:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2009/02/28:ipv6:7:2006/01/14::ysato444@yahoo.co.jp:Yuichi SATO:
-@:LDP man-pages:3.24:1999/05/31:iso-8859-1:7:iso_8859-1:7:
-※:LDP man-pages:3.24:2009/01/15:iso-8859-10:7:iso_8859-10:7:
-※:LDP man-pages:3.24:2009/01/28:iso-8859-11:7:iso_8859-11:7:
-※:LDP man-pages:3.24:2009/01/15:iso-8859-13:7:iso_8859-13:7:
-※:LDP man-pages:3.24:2009/01/15:iso-8859-14:7:iso_8859-14:7:
-@:LDP man-pages:3.24:1999/05/31:iso-8859-15:7:iso_8859-15:7:
-@:LDP man-pages:3.24:2003/03/05:iso-8859-16:7:iso_8859-16:7:
-@:LDP man-pages:3.24:2007/11/25:iso-8859-2:7:iso_8859-2:7:
-※:LDP man-pages:3.24:2009/01/15:iso-8859-3:7:iso_8859-3:7:
-※:LDP man-pages:3.24:2009/01/24:iso-8859-4:7:iso_8859-4:7:
-※:LDP man-pages:3.24:2009/01/15:iso-8859-5:7:iso_8859-5:7:
-※:LDP man-pages:3.24:2009/01/27:iso-8859-6:7:iso_8859-6:7:
-@:LDP man-pages:3.24:2008/10/30:iso-8859-7:7:iso_8859-7:7:
-※:LDP man-pages:3.24:2009/01/15:iso-8859-8:7:iso_8859-8:7:
-@:LDP man-pages:3.24:2002/09/24:iso-8859-9:7:iso_8859-9:7:
-○:LDP man-pages:3.24:1999/05/31:iso_8859-1:7:2002/09/14::argrath@ub32.org:Kentaro Shirakata:
-×:LDP man-pages:3.24:2009/01/15:iso_8859-10:7:::::
-×:LDP man-pages:3.24:2009/01/28:iso_8859-11:7:::::
-×:LDP man-pages:3.24:2009/01/15:iso_8859-13:7:::::
-×:LDP man-pages:3.24:2009/01/15:iso_8859-14:7:::::
-○:LDP man-pages:3.24:1999/05/31:iso_8859-15:7:2002/09/28::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-○:LDP man-pages:3.24:2003/03/05:iso_8859-16:7:2003/09/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2007/11/25:iso_8859-2:7:2002/09/28::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-×:LDP man-pages:3.24:2009/01/15:iso_8859-3:7:::::
-×:LDP man-pages:3.24:2009/01/24:iso_8859-4:7:::::
-×:LDP man-pages:3.24:2009/01/15:iso_8859-5:7:::::
-×:LDP man-pages:3.24:2009/01/27:iso_8859-6:7:::::
-○:LDP man-pages:3.24:2008/10/30:iso_8859-7:7:2002/09/28::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
-×:LDP man-pages:3.24:2009/01/15:iso_8859-8:7:::::
-○:LDP man-pages:3.24:2002/09/24:iso_8859-9:7:2003/01/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:1999/05/31:iso_8859_1:7:iso_8859-1:7:
-※:LDP man-pages:3.24:2009/01/15:iso_8859_10:7:iso_8859-10:7:
-※:LDP man-pages:3.24:2009/01/28:iso_8859_11:7:iso_8859-11:7:
-※:LDP man-pages:3.24:2009/01/15:iso_8859_13:7:iso_8859-13:7:
-※:LDP man-pages:3.24:2009/01/15:iso_8859_14:7:iso_8859-14:7:
-@:LDP man-pages:3.24:1999/05/31:iso_8859_15:7:iso_8859-15:7:
-@:LDP man-pages:3.24:2003/03/05:iso_8859_16:7:iso_8859-16:7:
-@:LDP man-pages:3.24:2007/11/25:iso_8859_2:7:iso_8859-2:7:
-※:LDP man-pages:3.24:2009/01/15:iso_8859_3:7:iso_8859-3:7:
-※:LDP man-pages:3.24:2009/01/24:iso_8859_4:7:iso_8859-4:7:
-※:LDP man-pages:3.24:2009/01/15:iso_8859_5:7:iso_8859-5:7:
-※:LDP man-pages:3.24:2009/01/27:iso_8859_6:7:iso_8859-6:7:
-@:LDP man-pages:3.24:2008/10/30:iso_8859_7:7:iso_8859-7:7:
-※:LDP man-pages:3.24:2009/01/15:iso_8859_8:7:iso_8859-8:7:
-@:LDP man-pages:3.24:2002/09/24:iso_8859_9:7:iso_8859-9:7:
-○:LDP man-pages:3.24:2009/02/04:koi8-r:7:2001/07/14::ysato@h4.dion.ne.jp:Yuichi SATO:
-×:LDP man-pages:3.24:2009/01/15:koi8-u:7:::::
-@:LDP man-pages:3.24:1999/05/31:latin1:7:iso_8859-1:7:
-@:LDP man-pages:3.24:2003/03/05:latin10:7:iso_8859-16:7:
-@:LDP man-pages:3.24:2007/11/25:latin2:7:iso_8859-2:7:
-※:LDP man-pages:3.24:2009/01/15:latin3:7:iso_8859-3:7:
-※:LDP man-pages:3.24:2009/01/24:latin4:7:iso_8859-4:7:
-@:LDP man-pages:3.24:2002/09/24:latin5:7:iso_8859-9:7:
-※:LDP man-pages:3.24:2009/01/15:latin6:7:iso_8859-10:7:
-※:LDP man-pages:3.24:2009/01/15:latin7:7:iso_8859-13:7:
-※:LDP man-pages:3.24:2009/01/15:latin8:7:iso_8859-14:7:
-@:LDP man-pages:3.24:1999/05/31:latin9:7:iso_8859-15:7:
-×:LDP man-pages:3.24:2009/01/13:libc:7:::::
-○:LDP man-pages:3.24:2008/12/05:locale:7:2006/02/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2004/09/15:mailaddr:7:2005/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2007/05/30:man:7:2007/06/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/10/28:man-pages:7:2008/02/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/08/11:math_error:7:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:0000/00/00:mdoc:7:2008/10/08::argrath@ub32.org:Kentaro Shirakata:
-c:LDP man-pages:3.24:0000/00/00:mdoc.samples:7:1999/01/21::man-jp@freebsd.org:FreeBSD jpman project:http://www.jp.freebsd.org/man-jp/
-○:LDP man-pages:3.24:2009/09/27:mq_overview:7:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2009/01/14:netdevice:7:2009/03/05::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.24:2008/11/11:netlink:7:2006/07/12::ysato444@yahoo.co.jp:Yuichi SATO:
-×:LDP man-pages:3.24:2008/08/15:numa:7:::::
-○:LDP man-pages:3.24:2004/08/24:operator:7:2004/11/16::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2008/08/08:packet:7:2005/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2009/12/05:path_resolution:7:2007/06/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2005/12/08:pipe:7:2005/12/27::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2007/12/21:posixoptions:7:2005/01/14::ysato444@yahoo.co.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2008/11/18:pthreads:7:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2005/10/10:pty:7:2005/10/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/11/20:raw:7:2007/01/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2009/01/12:regex:7:1998/07/08::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-×:LDP man-pages:3.24:2009/03/30:rtld-audit:7:::::
-○:LDP man-pages:3.24:2008/08/08:rtnetlink:7:2001/03/11::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.24:2009/02/25:sem_overview:7:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/06/25:shm_overview:7:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2010/02/03:signal:7:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/12/03:socket:7:2007/01/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-☆:LDP man-pages:2.67=>3.24:2007/12/20:spufs:7:2007/10/23::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2009/06/01:standards:7:2006/08/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2000/11/16:suffixes:7:2001/04/24::ysato@h4.dion.ne.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2009/01/26:svipc:7:2006/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-×:LDP man-pages:3.24:2008/06/18:symlink:7:::::
-○:LDP man-pages:3.24:2009/09/30:tcp:7:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2006/12/28:termio:7:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2010/02/25:time:7:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-※:LDP man-pages:3.24:2009/01/28:tis-620:7:iso_8859-11:7:
-○:LDP man-pages:3.24:2009/09/30:udp:7:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2008/12/03:udplite:7:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2001/05/11:unicode:7:2001/07/14::ysato@h4.dion.ne.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2001/12/22:units:7:2002/01/14::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.24:2008/12/01:unix:7:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24:2000/03/14:uri:7:2008/07/22::argrath@ub32.org:Kentaro Shirakata:
-@:LDP man-pages:3.24:2000/03/14:url:7:uri:7:
-@:LDP man-pages:3.24:2000/03/14:urn:7:uri:7:
-○:LDP man-pages:3.24:2001/05/11:utf-8:7:2001/07/14::ysato@h4.dion.ne.jp:Yuichi SATO:
-@:LDP man-pages:3.24:2001/05/11:utf8:7:utf-8:7:
-○:LDP man-pages:3.24:2008/08/08:x25:7:1999/12/06::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.24:2007/10/23:intro:8:2008/02/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-@:LDP man-pages:3.24:2009/01/12:ld-linux:8:ld.so:8:
-@:LDP man-pages:3.24:2009/01/12:ld-linux.so:8:ld.so:8:
-○:LDP man-pages:3.24:2009/01/12:ld.so:8:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
-○:LDP man-pages:3.24: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.24:2008/12/05:nscd:8:2009/03/14::argrath@ub32.org:Kentaro Shirakata:
-○:LDP man-pages:3.24:1998/11/01:sync:8:2000/06/13::sato@complex.eng.hokudai.ac.jp:Yuichi SATO:
-○:LDP man-pages:3.24:2007/05/18:tzselect:8:2002/01/14::ysato@h4.dion.ne.jp:Yuichi SATO:
-○:LDP man-pages:3.24:0000/00/00:zdump:8:1999/09/14::nakano@apm.seikei.ac.jp:NAKANO Takeo:
-○:LDP man-pages:3.24:2010/02/25:zic:8:2001/04/04::sato@complex.eng.hokudai.ac.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2007/11/15:intro:1:2008/02/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2000/10/30:ldd:1:2002/02/14::ysato@h4.dion.ne.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2008/11/14:time:1:2008/11/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/11/27:_Exit:2:_exit:2:
+@:LDP man-pages:3.25:2009/07/18:__clone2:2:clone:2:
+○:LDP man-pages:3.25:2008/11/27:_exit:2:2001/12/14::ysato@h4.dion.ne.jp:Yuichi SATO:
+@:LDP man-pages:3.25:1995/06/10:_llseek:2:llseek:2:
+@:LDP man-pages:3.25:2008/12/05:_newselect:2:select:2:
+○:LDP man-pages:3.25:2007/12/19:_syscall:2:2008/02/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/11/20:_sysctl:2:sysctl:2:
+○:LDP man-pages:3.25:2009/02/23:accept:2:2008/12/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2009/02/23:accept4:2:accept:2:
+○:LDP man-pages:3.25:2007/07/10:access:2:2007/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/06/16:acct:2:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
+×:LDP man-pages:3.25:2010/02/25:add_key:2:::::
+○:LDP man-pages:3.25:2004/05/27:adjtimex:2:2006/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2007/07/05:afs_syscall:2:unimplemented:2:
+○:LDP man-pages:3.25:2008/06/12:alarm:2:1997/02/22::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+○:LDP man-pages:3.25:2007/05/31:alloc_hugepages:2:2007/06/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2007/12/26:arch_prctl:2:2005/11/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2004/06/17:bdflush:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2007/12/28:bind:2:2007/06/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2007/07/05:break:2:unimplemented:2:
+○:LDP man-pages:3.25:2008/06/18:brk:2:2007/02/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:1995/06/27:cacheflush:2:2005/10/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2009/01/26:capget:2:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2009/01/26:capset:2:capget:2:
+○:LDP man-pages:3.25:2007/07/26:chdir:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2008/05/26:chmod:2:2005/01/14::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2008/06/16:chown:2:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.25:2008/06/16:chown32:2:chown:2:
+○:LDP man-pages:3.25:2008/06/23:chroot:2:2005/01/14::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2010/02/03:clock_getres:2:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.25:2010/02/03:clock_gettime:2:clock_getres:2:
+○:LDP man-pages:3.25:2008/07/09:clock_nanosleep:2:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2010/02/03:clock_settime:2:clock_getres:2:
+○:LDP man-pages:3.25:2009/07/18:clone:2:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2009/07/18:clone2:2:clone:2:
+○:LDP man-pages:3.25:2007/12/28:close:2:2007/10/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/12/03:connect:2:2005/10/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2010/06/14:creat:2:open:2:
+○:LDP man-pages:3.25:2007/06/03:create_module:2:2006/07/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:0000/00/00:delete_module:2:2006/07/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/10/09:dup:2:2005/09/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/10/09:dup2:2:dup:2:
+@:LDP man-pages:3.25:2008/10/09:dup3:2:dup:2:
+○:LDP man-pages:3.25:2009/01/17:epoll_create:2:2009/03/14::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.25:2009/01/17:epoll_create1:2:epoll_create:2:
+○:LDP man-pages:3.25:2009/01/17:epoll_ctl:2:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2009/01/17:epoll_pwait:2:epoll_wait:2:
+○:LDP man-pages:3.25:2009/01/17:epoll_wait:2:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2009/01/26:eventfd:2:2008/11/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2009/01/26:eventfd2:2:eventfd:2:
+○:LDP man-pages:3.25:2010/01/06:execve:2:2008/04/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/11/27:exit:2:_exit:2:
+○:LDP man-pages:3.25:2008/11/27:exit_group:2:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2009/12/13:faccessat:2:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2010/06/14:fadvise64:2:posix_fadvise:2:
+@:LDP man-pages:3.25:2010/06/14:fadvise64_64:2:posix_fadvise:2:
+○:LDP man-pages:3.25:2009/03/13:fallocate:2:2007/10/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2007/07/26:fchdir:2:chdir:2:
+@:LDP man-pages:3.25:2008/05/26:fchmod:2:chmod:2:
+○:LDP man-pages:3.25:2009/12/13:fchmodat:2:2006/12/28::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.25:2008/06/16:fchown:2:chown:2:
+@:LDP man-pages:3.25:2008/06/16:fchown32:2:fchown:2:
+○:LDP man-pages:3.25:2009/12/13:fchownat:2:2006/12/28::ysato444@yahoo.co.jp:Yuichi SATO:
+☆:LDP man-pages:3.24=>3.25:2010/06/19:fcntl:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2010/06/19:fcntl64:2:fcntl:2:
+@:LDP man-pages:3.25:2008/11/07:fdatasync:2:fsync:2:
+@:LDP man-pages:3.25:2001/12/01:fgetxattr:2:getxattr:2:
+@:LDP man-pages:3.25:2001/12/01:flistxattr:2:listxattr:2:
+○:LDP man-pages:3.25:2009/07/25:flock:2:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2009/04/27:fork:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2007/05/31:free_hugepages:2:alloc_hugepages:2:
+@:LDP man-pages:3.25:2001/12/01:fremovexattr:2:removexattr:2:
+@:LDP man-pages:3.25:2001/12/31:fsetxattr:2:setxattr:2:
+@:LDP man-pages:3.25:2009/09/30:fstat:2:stat:2:
+@:LDP man-pages:3.25:2009/09/30:fstat64:2:fstat:2:
+○:LDP man-pages:3.25:2009/12/13:fstatat:2:2006/12/28::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.25:2009/12/13:fstatat64:2:fstatat:2:
+@:LDP man-pages:3.25:2010/06/13:fstatfs:2:statfs:2:
+@:LDP man-pages:3.25:2004/06/23:fstatfs64:2:fstatfs:2:
+※:LDP man-pages:3.25:2003/08/22:fstatvfs:2:statvfs:3:
+○:LDP man-pages:3.25:2008/11/07:fsync:2:2007/10/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2009/02/28:ftruncate:2:truncate:2:
+@:LDP man-pages:3.25:2009/02/28:ftruncate64:2:ftruncate:2:
+☆:LDP man-pages:3.24=>3.25:2010/05/22:futex:2:2007/02/08::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2009/12/13:futimesat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.25:0000/00/00:get_kernel_syms:2:2006/07/31::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/08/15:get_mempolicy:2:2008/11/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/11/27:get_thread_area:2:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2009/03/15:getcontext:2:2001/12/15::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+×:LDP man-pages:3.25:2008/06/03:getcpu:2:::::
+@:LDP man-pages:3.25:2009/03/31:getcwd:2:getcwd:3:
+○:LDP man-pages:3.25:2009/07/04:getdents:2:2009/03/05::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.25:2009/07/04:getdents64:2:getdents:2:
+○:LDP man-pages:3.25:2009/09/27:getdomainname:2:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2007/07/26:getdtablesize:2:2007/01/14::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.25:1993/07/23:getegid:2:getgid:2:
+@:LDP man-pages:3.25:1993/07/23:getegid32:2:getegid:2:
+@:LDP man-pages:3.25:1993/07/23:geteuid:2:getuid:2:
+@:LDP man-pages:3.25:1993/07/23:geteuid32:2:geteuid:2:
+○:LDP man-pages:3.25:1993/07/23:getgid:2:1997/06/26::suto@av.crl.sony.co.jp:SUTO, Mitsuaki:
+@:LDP man-pages:3.25:1993/07/23:getgid32:2:getgid:2:
+○:LDP man-pages:3.25:2008/06/03:getgroups:2:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/06/03:getgroups32:2:getgroups:2:
+@:LDP man-pages:3.25:2009/01/13:gethostid:2:gethostid:3:
+○:LDP man-pages:3.25:2008/11/27:gethostname:2:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2009/03/15:getitimer:2:2007/10/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2007/07/26:getpagesize:2:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/12/03:getpeername:2:2005/02/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2009/09/20:getpgid:2:setpgid:2:
+@:LDP man-pages:3.25:2009/09/20:getpgrp:2:setpgid:2:
+○:LDP man-pages:3.25:2008/09/23:getpid:2:1997/06/27::suto@av.crl.sony.co.jp:SUTO, Mitsuaki:
+@:LDP man-pages:3.25:2007/07/05:getpmsg:2:unimplemented:2:
+@:LDP man-pages:3.25:2008/09/23:getppid:2:getpid:2:
+☆:LDP man-pages:3.24=>3.25:2008/05/29:getpriority:2:2005/10/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2007/12/28:getresgid:2:getresuid:2:
+@:LDP man-pages:3.25:2007/12/28:getresgid32:2:getresgid:2:
+○:LDP man-pages:3.25:2007/12/28:getresuid:2:2003/11/13::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.25:2007/12/28:getresuid32:2:getresuid:2:
+○:LDP man-pages:3.25:2008/10/06:getrlimit:2:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.24=>3.25:2010/06/14:getrusage:2:2008/11/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/12/05:getsid:2:2002/02/03::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.25:2008/12/03:getsockname:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2008/12/03:getsockopt:2:2008/07/24::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.25:2008/04/14:gettid:2:2003/09/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.24=>3.25:2009/03/25:gettimeofday:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:1993/07/23:getuid:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.25:1993/07/23:getuid32:2:getuid:2:
+○:LDP man-pages:3.25:2001/12/01:getxattr:2:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2007/07/05:gtty:2:unimplemented:2:
+○:LDP man-pages:3.25:1994/08/21:idle:2:2000/01/14::argrath@yo.rim.or.jp:Kentaro Shirakata:
+@:LDP man-pages:3.25:1995/11/29:inb:2:outb:2:
+@:LDP man-pages:3.25:1995/11/29:inb_p:2:outb:2:
+○:LDP man-pages:3.25:0000/00/00:init_module:2:2006/07/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:1995/11/29:inl:2:outb:2:
+@:LDP man-pages:3.25:1995/11/29:inl_p:2:outb:2:
+○:LDP man-pages:3.25:2006/02/07:inotify_add_watch:2:2006/08/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/10/10:inotify_init:2:2006/08/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/10/10:inotify_init1:2:inotify_init:2:
+○:LDP man-pages:3.25:2006/02/07:inotify_rm_watch:2:2006/08/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:1995/11/29:insb:2:outb:2:
+@:LDP man-pages:3.25:1995/11/29:insl:2:outb:2:
+@:LDP man-pages:3.25:1995/11/29:insw:2:outb:2:
+○:LDP man-pages:3.25:2010/02/03:intro:2:2006/04/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:1995/11/29:inw:2:outb:2:
+@:LDP man-pages:3.25:1995/11/29:inw_p:2:outb:2:
+○:LDP man-pages:3.25:2008/06/18:io_cancel:2:2003/03/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/06/18:io_destroy:2:2003/03/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/07/04:io_getevents:2:2003/03/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/06/18:io_setup:2:2003/03/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/06/18:io_submit:2:2003/03/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2000/09/21:ioctl:2:2005/02/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2007/12/29:ioctl_list:2:2004/06/13::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2007/06/15:ioperm:2:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2004/12/26:iopl:2:2005/02/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/07/09:ioprio_get:2:ioprio_set:2:
+☆:LDP man-pages:3.24=>3.25:2008/07/09:ioprio_set:2:2007/01/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2007/06/28:ipc:2:1997/02/23::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+×:LDP man-pages:3.25:2010/02/25:keyctl:2:::::
+○:LDP man-pages:3.25:2009/09/15:kill:2:2005/12/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2007/07/26:killpg:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.25:2008/06/16:lchown:2:chown:2:
+@:LDP man-pages:3.25:2008/06/16:lchown32:2:lchown:2:
+@:LDP man-pages:3.25:2001/12/01:lgetxattr:2:getxattr:2:
+○:LDP man-pages:3.25:2008/08/21:link:2:2005/05/12::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2009/12/13:linkat:2:2007/01/21::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/11/20:listen:2:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.25:2001/12/01:listxattr:2:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2001/12/01:llistxattr:2:listxattr:2:
+○:LDP man-pages:3.25:1995/06/10:llseek:2:2005/01/14::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.25:2007/07/05:lock:2:unimplemented:2:
+○:LDP man-pages:3.25:2004/06/17:lookup_dcookie:2:2005/02/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2001/12/01:lremovexattr:2:removexattr:2:
+○:LDP man-pages:3.25:2001/09/24:lseek:2:2006/03/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2001/12/31:lsetxattr:2:setxattr:2:
+@:LDP man-pages:3.25:2009/09/30:lstat:2:stat:2:
+@:LDP man-pages:3.25:2009/09/30:lstat64:2:lstat:2:
+☆:LDP man-pages:3.24=>3.25:2010/06/20:madvise:2:2007/01/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2007/07/05:madvise1:2:unimplemented:2:
+○:LDP man-pages:3.25:2008/08/15:mbind:2:2008/11/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+×:LDP man-pages:3.25:2010/06/11:migrate_pages:2:::::
+○:LDP man-pages:3.25:2008/04/22:mincore:2:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/05/13:mkdir:2:2008/10/08::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.25:2009/12/13:mkdirat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2008/12/01:mknod:2:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2009/12/13:mknodat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO:
+☆:LDP man-pages:3.24=>3.25:2010/03/05:mlock:2:2006/02/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2010/03/05:mlockall:2:mlock:2:
+☆:LDP man-pages:3.24=>3.25:2010/06/20:mmap:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/04/22:mmap2:2:2007/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2007/06/01:modify_ldt:2:2007/06/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.24=>3.25:2010/05/22:mount:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.24=>3.25:2010/06/11:move_pages:2:2008/11/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/08/06:mprotect:2:2007/06/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2007/07/05:mpx:2:unimplemented:2:
+○:LDP man-pages:3.25:2007/06/01:mq_getsetattr:2:2006/07/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2009/09/15:mq_notify:2:mq_notify:3:
+@:LDP man-pages:3.25:2009/02/20:mq_open:2:mq_open:3:
+@:LDP man-pages:3.25:2010/02/25:mq_timedreceive:2:mq_receive:3:
+@:LDP man-pages:3.25:2010/02/25:mq_timedsend:2:mq_send:3:
+@:LDP man-pages:3.25:2006/02/25:mq_unlink:2:mq_unlink:3:
+☆:LDP man-pages:3.24=>3.25:2010/06/10:mremap:2:2006/04/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.24=>3.25:2008/08/06:msgctl:2:2005/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2004/05/27:msgget:2:2005/03/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.24=>3.25:2008/04/23:msgop:2:2006/03/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/04/23:msgrcv:2:msgop:2:
+@:LDP man-pages:3.25:2008/04/23:msgsnd:2:msgop:2:
+○:LDP man-pages:3.25:2008/04/22:msync:2:2008/07/24::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.25:2010/03/05:munlock:2:mlock:2:
+@:LDP man-pages:3.25:2010/03/05:munlockall:2:mlock:2:
+@:LDP man-pages:3.25:2010/06/20:munmap:2:mmap:2:
+○:LDP man-pages:3.25:2009/01/19:nanosleep:2:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:1997/07/16:nfsservctl:2:1997/08/30::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+☆:LDP man-pages:3.24=>3.25:2007/07/26:nice:2:2005/10/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2009/09/30:oldfstat:2:stat:2:
+@:LDP man-pages:3.25:2009/09/30:oldlstat:2:stat:2:
+@:LDP man-pages:3.25:2008/12/03:oldolduname:2:uname:2:
+@:LDP man-pages:3.25:2009/09/30:oldstat:2:stat:2:
+@:LDP man-pages:3.25:2008/12/03:olduname:2:uname:2:
+☆:LDP man-pages:3.24=>3.25:2010/06/14:open:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2009/12/13:openat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.25:1995/11/29:outb:2:2005/10/30::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.25:1995/11/29:outb_p:2:outb:2:
+@:LDP man-pages:3.25:1995/11/29:outl:2:outb:2:
+@:LDP man-pages:3.25:1995/11/29:outl_p:2:outb:2:
+@:LDP man-pages:3.25:1995/11/29:outsb:2:outb:2:
+@:LDP man-pages:3.25:1995/11/29:outsl:2:outb:2:
+@:LDP man-pages:3.25:1995/11/29:outsw:2:outb:2:
+@:LDP man-pages:3.25:1995/11/29:outw:2:outb:2:
+@:LDP man-pages:3.25:1995/11/29:outw_p:2:outb:2:
+@:LDP man-pages:3.25:2009/12/05:path_resolution:2:path_resolution:7:
+○:LDP man-pages:3.25:2008/10/06:pause:2:1997/06/27::suto@av.crl.sony.co.jp:SUTO, Mitsuaki:
+@:LDP man-pages:3.25:2003/07/14:pciconfig_iobase:2:pciconfig_read:2:
+○:LDP man-pages:3.25:2003/07/14:pciconfig_read:2:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.25:2003/07/14:pciconfig_write:2:pciconfig_read:2:
+○:LDP man-pages:3.25:2003/01/01:personality:2:2003/09/14::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.25:2009/09/15:pipe:2:2008/11/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2009/09/15:pipe2:2:pipe:2:
+○:LDP man-pages:3.25:2007/06/01:pivot_root:2:2000/06/14::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+☆:LDP man-pages:3.24=>3.25:2010/06/12:poll:2:2006/07/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.24=>3.25:2010/06/14:posix_fadvise:2:2007/02/08::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.25:2010/06/12:ppoll:2:poll:2:
+☆:LDP man-pages:3.24=>3.25:2010/05/13:prctl:2:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.24=>3.25:2008/12/03:pread:2:1999/06/25::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+@:LDP man-pages:3.25:2008/12/03:pread64:2:pread:2:
+@:LDP man-pages:3.25:2007/07/05:prof:2:unimplemented:2:
+@:LDP man-pages:3.25:2008/12/05:pselect:2:select:2:
+@:LDP man-pages:3.25:2008/12/05:pselect6:2:select:2:
+○:LDP man-pages:3.25:2009/03/30:ptrace:2:2007/05/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2007/07/05:putpmsg:2:unimplemented:2:
+@:LDP man-pages:3.25:2008/12/03:pwrite:2:pread:2:
+@:LDP man-pages:3.25:2008/12/03:pwrite64:2:pwrite:2:
+○:LDP man-pages:3.25:0000/00/00:query_module:2:2006/07/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.24=>3.25:2010/06/16:quotactl:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2009/02/23:read:2:2005/10/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2007/07/26:readahead:2:2005/02/27::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/10/02:readdir:2:1997/02/23::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+○:LDP man-pages:3.25:2007/07/26:readlink:2:2006/07/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2009/12/13:readlinkat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2002/10/17:readv:2:2007/06/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/02/11:reboot:2:2008/07/24::argrath@ub32.org:Kentaro Shirakata:
+☆:LDP man-pages:3.24=>3.25:2009/03/10:recv:2:2008/12/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2009/03/10:recvfrom:2:recv:2:
+@:LDP man-pages:3.25:2009/03/10:recvmsg:2:recv:2:
+○:LDP man-pages:3.25:2008/04/22:remap_file_pages:2:2005/10/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2001/12/01:removexattr:2:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2009/03/30:rename:2:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2009/12/13:renameat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO:
+×:LDP man-pages:3.25:2010/02/25:request_key:2:::::
+○:LDP man-pages:3.25:2008/05/08:rmdir:2:2006/07/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2010/06/16:rt_sigaction:2:sigaction:2:
+@:LDP man-pages:3.25:2008/10/04:rt_sigpending:2:sigpending:2:
+@:LDP man-pages:3.25:2008/10/17:rt_sigprocmask:2:sigprocmask:2:
+@:LDP man-pages:3.25:2007/07/26:rt_sigqueueinfo:2:sigqueue:2:
+@:LDP man-pages:3.25:2008/06/26:rt_sigreturn:2:sigreturn:2:
+@:LDP man-pages:3.25:2005/09/15:rt_sigsuspend:2:sigsuspend:2:
+@:LDP man-pages:3.25:2008/10/04:rt_sigtimedwait:2:sigtimedwait:2:
+@:LDP man-pages:3.25:2008/06/18:sbrk:2:brk:2:
+○:LDP man-pages:3.25:2006/03/23:sched_get_priority_max:2:2006/04/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2006/03/23:sched_get_priority_min:2:sched_get_priority_max:2:
+@:LDP man-pages:3.25:2008/11/14:sched_getaffinity:2:sched_setaffinity:2:
+@:LDP man-pages:3.25:2006/03/23:sched_getparam:2:sched_setparam:2:
+@:LDP man-pages:3.25:2010/06/19:sched_getscheduler:2:sched_setscheduler:2:
+○:LDP man-pages:3.25:2007/04/06:sched_rr_get_interval:2:2007/06/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/11/14:sched_setaffinity:2:2008/12/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2006/03/23:sched_setparam:2:2006/04/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.24=>3.25:2010/06/19:sched_setscheduler:2:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/10/18:sched_yield:2:1997/02/23::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+@:LDP man-pages:3.25:2007/07/05:security:2:unimplemented:2:
+☆:LDP man-pages:3.24=>3.25:2008/12/05:select:2:2007/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.24=>3.25:2010/06/10:select_tut:2:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.24=>3.25:2009/09/27:semctl:2:2005/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2004/05/27:semget:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/10/04:semop:2:2007/05/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/10/04:semtimedop:2:semop:2:
+○:LDP man-pages:3.25:2009/02/23:send:2:2006/04/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2010/02/15:sendfile:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2010/02/15:sendfile64:2:sendfile:2:
+@:LDP man-pages:3.25:2009/02/23:sendmsg:2:send:2:
+@:LDP man-pages:3.25:2009/02/23:sendto:2:send:2:
+○:LDP man-pages:3.25:2008/08/15:set_mempolicy:2:2008/11/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/11/27:set_thread_area:2:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2004/09/10:set_tid_address:2:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.25:2009/03/15:setcontext:2:getcontext:2:
+@:LDP man-pages:3.25:2009/09/27:setdomainname:2:getdomainname:2:
+@:LDP man-pages:3.25:2009/10/17:setegid:2:seteuid:2:
+○:LDP man-pages:3.25:2009/10/17:seteuid:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/12/05:setfsgid:2:2005/02/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/12/05:setfsgid32:2:setfsgid:2:
+○:LDP man-pages:3.25:2008/12/05:setfsuid:2:2005/02/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/12/05:setfsuid32:2:setfsuid:2:
+○:LDP man-pages:3.25:2009/10/17:setgid:2:2003/02/14::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.25:2009/10/17:setgid32:2:setgid:2:
+@:LDP man-pages:3.25:2008/06/03:setgroups:2:getgroups:2:
+@:LDP man-pages:3.25:2008/06/03:setgroups32:2:setgroups:2:
+@:LDP man-pages:3.25:2009/01/13:sethostid:2:gethostid:3:
+@:LDP man-pages:3.25:2008/11/27:sethostname:2:gethostname:2:
+@:LDP man-pages:3.25:2009/03/15:setitimer:2:getitimer:2:
+○:LDP man-pages:3.25:2009/09/20:setpgid:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2009/09/20:setpgrp:2:setpgid:2:
+@:LDP man-pages:3.25:2008/05/29:setpriority:2:getpriority:2:
+@:LDP man-pages:3.25:2009/10/17:setregid:2:setreuid:2:
+@:LDP man-pages:3.25:2009/10/17:setregid32:2:setregid:2:
+@:LDP man-pages:3.25:2007/07/26:setresgid:2:setresuid:2:
+@:LDP man-pages:3.25:2007/07/26:setresgid32:2:setresgid:2:
+○:LDP man-pages:3.25:2007/07/26:setresuid:2:2005/11/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2007/07/26:setresuid32:2:setresuid:2:
+○:LDP man-pages:3.25:2009/10/17:setreuid:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2009/10/17:setreuid32:2:setreuid:2:
+@:LDP man-pages:3.25:2008/10/06:setrlimit:2:getrlimit:2:
+☆:LDP man-pages:3.24=>3.25:2008/12/03:setsid:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.25:2008/12/03:setsockopt:2:getsockopt:2:
+@:LDP man-pages:3.25:2009/03/25:settimeofday:2:gettimeofday:2:
+○:LDP man-pages:3.25:2010/02/21:setuid:2:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.25:2010/02/21:setuid32:2:setuid:2:
+○:LDP man-pages:3.25:2008/12/03:setup:2:2008/07/24::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.25:2001/12/31:setxattr:2:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2007/07/05:sgetmask:2:2007/10/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/06/03:shmat:2:shmop:2:
+☆:LDP man-pages:3.24=>3.25:2008/08/07:shmctl:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/06/03:shmdt:2:shmop:2:
+○:LDP man-pages:3.25:2006/05/02:shmget:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/06/03:shmop:2:2006/04/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/12/03:shutdown:2:2001/11/09::argrath@ub32.org:Kentaro Shirakata:
+☆:LDP man-pages:3.24=>3.25:2010/06/16:sigaction:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/10/04:sigaltstack:2:2006/01/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/07/11:signal:2:2007/06/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2009/01/13:signalfd:2:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2009/01/13:signalfd4:2:signalfd:2:
+○:LDP man-pages:3.25:2008/10/04:sigpending:2:2005/12/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.24=>3.25:2008/10/17:sigprocmask:2:2005/10/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2007/07/26:sigqueue:2:2007/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/06/26:sigreturn:2:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2005/09/15:sigsuspend:2:2005/10/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/10/04:sigtimedwait:2:sigwaitinfo:2:
+○:LDP man-pages:3.25:2008/10/04:sigwaitinfo:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2009/01/19:socket:2:2008/11/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2007/06/28:socketcall:2:1997/03/03::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+○:LDP man-pages:3.25:2008/10/11:socketpair:2:2002/09/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2009/09/15:splice:2:2007/02/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:2.67=>3.25:2007/12/20:spu_create:2:2007/10/23::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2007/11/25:spu_run:2:2007/10/23::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2007/07/05:ssetmask:2:sgetmask:2:
+○:LDP man-pages:3.25:2009/09/30:stat:2:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2009/09/30:stat64:2:stat:2:
+☆:LDP man-pages:3.24=>3.25:2010/06/13:statfs:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2010/06/13:statfs64:2:statfs:2:
+※:LDP man-pages:3.25:2003/08/22:statvfs:2:statvfs:3:
+○:LDP man-pages:3.25:2010/02/25:stime:2:2003/09/14::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.25:2007/07/05:stty:2:unimplemented:2:
+@:LDP man-pages:3.25:2010/06/15:swapoff:2:swapon:2:
+☆:LDP man-pages:3.24=>3.25:2010/06/15:swapon:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2007/07/26:symlink:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2009/12/13:symlinkat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2007/07/26:sync:2:2003/09/14::argrath@ub32.org:Kentaro Shirakata:
+☆:LDP man-pages:3.24=>3.25:2010/01/17:sync_file_range:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2007/07/26:syscall:2:2002/08/20::ysato@h4.dion.ne.jp:Yuichi SATO:
+☆:LDP man-pages:3.24=>3.25:2010/03/06:syscalls:2:2007/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/11/20:sysctl:2:1999/12/03::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+○:LDP man-pages:3.25:1995/08/09:sysfs:2:2001/06/02::ysato@h4.dion.ne.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2007/11/15:sysinfo:2:2000/09/23::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+○:LDP man-pages:3.25:2008/06/20:syslog:2:2008/04/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2009/09/15:tee:2:2007/02/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/10/01:tgkill:2:tkill:2:
+○:LDP man-pages:3.25:2010/02/25:time:2:1999/07/27::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+×:LDP man-pages:3.25:2009/02/20:timer_create:2:::::
+×:LDP man-pages:3.25:2009/02/20:timer_delete:2:::::
+×:LDP man-pages:3.25:2009/02/20:timer_getoverrun:2:::::
+※:LDP man-pages:3.25:2009/02/20:timer_gettime:2:timer_settime:2:
+×:LDP man-pages:3.25:2009/02/20:timer_settime:2:::::
+○:LDP man-pages:3.25:2009/03/10:timerfd_create:2:2008/11/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2009/03/10:timerfd_gettime:2:timerfd_create:2:
+@:LDP man-pages:3.25:2009/03/10:timerfd_settime:2:timerfd_create:2:
+○:LDP man-pages:3.25:2008/06/25:times:2:2008/02/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/10/01:tkill:2:2005/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2009/02/28:truncate:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2009/02/28:truncate64:2:truncate:2:
+@:LDP man-pages:3.25:2007/07/05:tuxcall:2:unimplemented:2:
+@:LDP man-pages:3.25:2008/10/06:ugetrlimit:2:getrlimit:2:
+○:LDP man-pages:3.25:2008/01/09:umask:2:2008/02/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.24=>3.25:2010/06/19:umount:2:2008/11/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2010/06/19:umount2:2:umount:2:
+○:LDP man-pages:3.25:2008/12/03:uname:2:2002/02/14::ysato@h4.dion.ne.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2007/07/05:unimplemented:2:2003/03/06::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+○:LDP man-pages:3.25:2004/06/23:unlink:2:2006/04/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2009/12/13:unlinkat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2008/11/20:unshare:2:2006/08/19::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2005/01/09:uselib:2:2005/04/21::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2003/08/04:ustat:2:2004/06/13::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2008/06/19:utime:2:2006/10/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+×:LDP man-pages:3.25:2009/12/13:utimensat:2:::::
+@:LDP man-pages:3.25:2008/06/19:utimes:2:utime:2:
+☆:LDP man-pages:3.24=>3.25:2009/06/21:vfork:2:2008/11/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2007/07/26:vhangup:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2009/02/20:vm86:2:2004/06/13::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.25:2009/02/20:vm86old:2:vm86:2:
+○:LDP man-pages:3.25:2009/09/15:vmsplice:2:2007/02/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2007/07/05:vserver:2:unimplemented:2:
+○:LDP man-pages:3.25:2009/04/21:wait:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/09/28:wait3:2:wait4:2:
+○:LDP man-pages:3.25:2008/09/28:wait4:2:2005/03/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2009/04/21:waitid:2:wait:2:
+@:LDP man-pages:3.25:2009/04/21:waitpid:2:wait:2:
+○:LDP man-pages:3.25:2009/02/23:write:2:2007/05/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2002/10/17:writev:2:readv:2:
+@:LDP man-pages:3.25:2008/11/20:CMSG_ALIGN:3:cmsg:3:
+@:LDP man-pages:3.25:2008/11/20:CMSG_FIRSTHDR:3:cmsg:3:
+@:LDP man-pages:3.25:2008/11/20:CMSG_NXTHDR:3:cmsg:3:
+@:LDP man-pages:3.25:2008/11/20:CMSG_SPACE:3:cmsg:3:
+※:LDP man-pages:3.25:2010/02/21:CPU_ALLOC:3:CPU_SET:3:
+※:LDP man-pages:3.25:2010/02/21:CPU_ALLOC_SIZE:3:CPU_SET:3:
+※:LDP man-pages:3.25:2010/02/21:CPU_AND:3:CPU_SET:3:
+※:LDP man-pages:3.25:2010/02/21:CPU_AND_S:3:CPU_SET:3:
+※:LDP man-pages:3.25:2010/02/21:CPU_CLR:3:CPU_SET:3:
+※:LDP man-pages:3.25:2010/02/21:CPU_CLR_S:3:CPU_SET:3:
+※:LDP man-pages:3.25:2010/02/21:CPU_COUNT:3:CPU_SET:3:
+※:LDP man-pages:3.25:2010/02/21:CPU_COUNT_S:3:CPU_SET:3:
+※:LDP man-pages:3.25:2010/02/21:CPU_EQUAL:3:CPU_SET:3:
+※:LDP man-pages:3.25:2010/02/21:CPU_EQUAL_S:3:CPU_SET:3:
+※:LDP man-pages:3.25:2010/02/21:CPU_FREE:3:CPU_SET:3:
+※:LDP man-pages:3.25:2010/02/21:CPU_ISSET:3:CPU_SET:3:
+※:LDP man-pages:3.25:2010/02/21:CPU_ISSET_S:3:CPU_SET:3:
+※:LDP man-pages:3.25:2010/02/21:CPU_OR:3:CPU_SET:3:
+※:LDP man-pages:3.25:2010/02/21:CPU_OR_S:3:CPU_SET:3:
+×:LDP man-pages:3.25:2010/02/21:CPU_SET:3:::::
+※:LDP man-pages:3.25:2010/02/21:CPU_SET_S:3:CPU_SET:3:
+※:LDP man-pages:3.25:2010/02/21:CPU_XOR:3:CPU_SET:3:
+※:LDP man-pages:3.25:2010/02/21:CPU_XOR_S:3:CPU_SET:3:
+※:LDP man-pages:3.25:2010/02/21:CPU_ZERO:3:CPU_SET:3:
+※:LDP man-pages:3.25:2010/02/21:CPU_ZERO_S:3:CPU_SET:3:
+@:LDP man-pages:3.25:2008/12/05:FD_CLR:3:select:2:
+@:LDP man-pages:3.25:2008/12/05:FD_ISSET:3:select:2:
+@:LDP man-pages:3.25:2008/12/05:FD_SET:3:select:2:
+@:LDP man-pages:3.25:2008/12/05:FD_ZERO:3:select:2:
+@:LDP man-pages:3.25:2007/07/26:HUGE_VAL:3:INFINITY:3:
+@:LDP man-pages:3.25:2007/07/26:HUGE_VALF:3:INFINITY:3:
+@:LDP man-pages:3.25:2007/07/26:HUGE_VALL:3:INFINITY:3:
+○:LDP man-pages:3.25:2007/07/26:INFINITY:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.25:1999/07/04:MB_CUR_MAX:3:1999/09/11::cz8cb01@linux.or.jp:HAYAKAWA Hitoshi:
+○:LDP man-pages:3.25:1999/07/04:MB_LEN_MAX:3:1999/09/11::cz8cb01@linux.or.jp:HAYAKAWA Hitoshi:
+@:LDP man-pages:3.25:2007/07/26:NAN:3:INFINITY:3:
+@:LDP man-pages:3.25:2001/12/16:__fbufsize:3:stdio_ext:3:
+@:LDP man-pages:3.25:2001/12/16:__flbf:3:stdio_ext:3:
+@:LDP man-pages:3.25:2001/12/16:__fpending:3:stdio_ext:3:
+@:LDP man-pages:3.25:2001/12/15:__fpurge:3:fpurge:3:
+@:LDP man-pages:3.25:2001/12/16:__freadable:3:stdio_ext:3:
+@:LDP man-pages:3.25:2001/12/16:__freading:3:stdio_ext:3:
+@:LDP man-pages:3.25:2001/12/16:__fsetlocking:3:stdio_ext:3:
+@:LDP man-pages:3.25:2001/12/16:__fwritable:3:stdio_ext:3:
+@:LDP man-pages:3.25:2001/12/16:__fwriting:3:stdio_ext:3:
+@:LDP man-pages:3.25:2002/07/20:__malloc_hook:3:malloc_hook:3:
+○:LDP man-pages:3.25:1997/03/08:__setfpucw:3:2000/09/20::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+@:LDP man-pages:3.25:2001/12/16:_flushlbf:3:stdio_ext:3:
+○:LDP man-pages:3.25:2007/07/26:a64l:3:2004/01/17::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2007/12/15:abort:3:1998/02/18::tyoshino@eng.toyo.ac.jp:Takashi Yoshino:
+○:LDP man-pages:3.25:2007/07/26:abs:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.25:2008/08/05:acos:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/08/05:acosf:3:acos:3:
+○:LDP man-pages:3.25:2008/08/05:acosh:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/08/05:acoshf:3:acosh:3:
+@:LDP man-pages:3.25:2008/08/05:acoshl:3:acosh:3:
+@:LDP man-pages:3.25:2008/08/05:acosl:3:acos:3:
+@:LDP man-pages:3.25:2009/09/15:addmntent:3:getmntent:3:
+○:LDP man-pages:3.25:2008/06/14:addseverity:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2008/06/22:adjtime:3:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2003/11/14:aio_cancel:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2003/11/14:aio_error:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2003/11/14:aio_fsync:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2003/11/14:aio_read:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2003/11/14:aio_return:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2003/11/14:aio_suspend:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2003/11/14:aio_write:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2008/01/24:alloca:3:2002/09/19::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.25:2009/02/10:alphasort:3:scandir:3:
+@:LDP man-pages:3.25:2007/05/18:argz:3:argz_add:3:
+○:LDP man-pages:3.25:2007/05/18:argz_add:3:2003/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2007/05/18:argz_add_sep:3:argz_add:3:
+@:LDP man-pages:3.25:2007/05/18:argz_append:3:argz_add:3:
+@:LDP man-pages:3.25:2007/05/18:argz_count:3:argz_add:3:
+@:LDP man-pages:3.25:2007/05/18:argz_create:3:argz_add:3:
+@:LDP man-pages:3.25:2007/05/18:argz_create_sep:3:argz_add:3:
+@:LDP man-pages:3.25:2007/05/18:argz_delete:3:argz_add:3:
+@:LDP man-pages:3.25:2007/05/18:argz_extract:3:argz_add:3:
+@:LDP man-pages:3.25:2007/05/18:argz_insert:3:argz_add:3:
+@:LDP man-pages:3.25:2007/05/18:argz_next:3:argz_add:3:
+@:LDP man-pages:3.25:2007/05/18:argz_replace:3:argz_add:3:
+@:LDP man-pages:3.25:2007/05/18:argz_stringify:3:argz_add:3:
+@:LDP man-pages:3.25:2010/02/25:asctime:3:ctime:3:
+@:LDP man-pages:3.25:2010/02/25:asctime_r:3:ctime:3:
+○:LDP man-pages:3.25:2008/08/05:asin:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/08/05:asinf:3:asin:3:
+○:LDP man-pages:3.25:2008/08/05:asinh:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/08/05:asinhf:3:asinh:3:
+@:LDP man-pages:3.25:2008/08/05:asinhl:3:asinh:3:
+@:LDP man-pages:3.25:2008/08/05:asinl:3:asin:3:
+○:LDP man-pages:3.25:2001/12/18:asprintf:3:2002/01/14::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.25:2002/08/25:assert:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.25:2002/08/25:assert_perror:3:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/12/02:atan:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/11/20:atan2:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/11/20:atan2f:3:atan2:3:
+@:LDP man-pages:3.25:2008/11/20:atan2l:3:atan2:3:
+@:LDP man-pages:3.25:2008/12/02:atanf:3:atan:3:
+○:LDP man-pages:3.25:2008/08/05:atanh:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/08/05:atanhf:3:atanh:3:
+@:LDP man-pages:3.25:2008/08/05:atanhl:3:atanh:3:
+@:LDP man-pages:3.25:2008/12/02:atanl:3:atan:3:
+○:LDP man-pages:3.25:2008/12/05:atexit:3:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:1993/03/29:atof:3:1998/02/18::tyoshino@eng.toyo.ac.jp:Takashi Yoshino:
+○:LDP man-pages:3.25:2007/07/26:atoi:3:2001/02/09::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.25:2007/07/26:atol:3:atoi:3:
+@:LDP man-pages:3.25:2007/07/26:atoll:3:atoi:3:
+@:LDP man-pages:3.25:2007/07/26:atoq:3:atoi:3:
+@:LDP man-pages:3.25:2008/07/17:auth_destroy:3:rpc:3:
+@:LDP man-pages:3.25:2008/07/17:authnone_create:3:rpc:3:
+@:LDP man-pages:3.25:2008/07/17:authunix_create:3:rpc:3:
+@:LDP man-pages:3.25:2008/07/17:authunix_create_default:3:rpc:3:
+○:LDP man-pages:3.25:2008/06/14:backtrace:3:2007/10/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/06/14:backtrace_symbols:3:backtrace:3:
+@:LDP man-pages:3.25:2008/06/14:backtrace_symbols_fd:3:backtrace:3:
+○:LDP man-pages:3.25:2009/03/30:basename:3:2007/05/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/08/06:bcmp:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.25:2009/03/15:bcopy:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
+※:LDP man-pages:3.25:2009/01/19:be16toh:3:endian:3:
+※:LDP man-pages:3.25:2009/01/19:be32toh:3:endian:3:
+※:LDP man-pages:3.25:2009/01/19:be64toh:3:endian:3:
+○:LDP man-pages:3.25:2008/12/03:bindresvport:3:2007/06/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2009/03/15:bsd_signal:3:2007/06/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2003/11/01:bsearch:3:2005/02/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2004/12/26:bstring:3:2003/11/13::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.25:2009/02/04:btowc:3:1999/09/11::cz8cb01@linux.or.jp:HAYAKAWA Hitoshi:
+○:LDP man-pages:3.25:1994/08/18:btree:3:1999/08/16::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.25:2009/01/15:byteorder:3:2005/11/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2002/12/31:bzero:3:2003/03/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2007/12/26:cabs:3:2003/07/23::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2007/12/26:cabsf:3:cabs:3:
+@:LDP man-pages:3.25:2007/12/26:cabsl:3:cabs:3:
+○:LDP man-pages:3.25:2007/12/26:cacos:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2007/12/26:cacosf:3:cacos:3:
+○:LDP man-pages:3.25:2008/08/11:cacosh:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/08/11:cacoshf:3:cacosh:3:
+@:LDP man-pages:3.25:2008/08/11:cacoshl:3:cacosh:3:
+@:LDP man-pages:3.25:2007/12/26:cacosl:3:cacos:3:
+@:LDP man-pages:3.25:2009/01/13:calloc:3:malloc:3:
+@:LDP man-pages:3.25:2008/07/17:callrpc:3:rpc:3:
+○:LDP man-pages:3.25:2005/07/14:canonicalize_file_name:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2007/12/26:carg:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2007/12/26:cargf:3:carg:3:
+@:LDP man-pages:3.25:2007/12/26:cargl:3:carg:3:
+○:LDP man-pages:3.25:2007/12/26:casin:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2007/12/26:casinf:3:casin:3:
+○:LDP man-pages:3.25:2007/12/26:casinh:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2007/12/26:casinhf:3:casinh:3:
+@:LDP man-pages:3.25:2007/12/26:casinhl:3:casinh:3:
+@:LDP man-pages:3.25:2007/12/26:casinl:3:casin:3:
+○:LDP man-pages:3.25:2007/12/26:catan:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2007/12/26:catanf:3:catan:3:
+○:LDP man-pages:3.25:2007/12/26:catanh:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2007/12/26:catanhf:3:catanh:3:
+@:LDP man-pages:3.25:2007/12/26:catanhl:3:catanh:3:
+@:LDP man-pages:3.25:2007/12/26:catanl:3:catan:3:
+@:LDP man-pages:3.25:2001/12/14:catclose:3:catopen:3:
+○:LDP man-pages:3.25:1998/08/09:catgets:3:1999/03/01::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.25:2001/12/14:catopen:3:2002/01/14::ysato@h4.dion.ne.jp:Yuichi SATO:
+@:LDP man-pages:3.25:2007/05/18:cbc_crypt:3:des_crypt:3:
+○:LDP man-pages:3.25:2008/08/05:cbrt:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/08/05:cbrtf:3:cbrt:3:
+@:LDP man-pages:3.25:2008/08/05:cbrtl:3:cbrt:3:
+○:LDP man-pages:3.25:2007/12/26:ccos:3:2003/07/28::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2007/12/26:ccosf:3:ccos:3:
+○:LDP man-pages:3.25:2007/12/26:ccosh:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2007/12/26:ccoshf:3:ccosh:3:
+@:LDP man-pages:3.25:2007/12/26:ccoshl:3:ccosh:3:
+@:LDP man-pages:3.25:2007/12/26:ccosl:3:ccos:3:
+○:LDP man-pages:3.25:2008/08/05:ceil:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/08/05:ceilf:3:ceil:3:
+@:LDP man-pages:3.25:2008/08/05:ceill:3:ceil:3:
+○:LDP man-pages:3.25:2007/12/26:cerf:3:2005/02/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2007/12/26:cerfc:3:cerf:3:
+@:LDP man-pages:3.25:2007/12/26:cerfcf:3:cerf:3:
+@:LDP man-pages:3.25:2007/12/26:cerfcl:3:cerf:3:
+@:LDP man-pages:3.25:2007/12/26:cerff:3:cerf:3:
+@:LDP man-pages:3.25:2007/12/26:cerfl:3:cerf:3:
+○:LDP man-pages:3.25:2007/12/26:cexp:3:2003/08/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2002/07/28:cexp2:3:2005/03/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2002/07/28:cexp2f:3:cexp2:3:
+@:LDP man-pages:3.25:2002/07/28:cexp2l:3:cexp2:3:
+@:LDP man-pages:3.25:2007/12/26:cexpf:3:cexp:3:
+@:LDP man-pages:3.25:2007/12/26:cexpl:3:cexp:3:
+@:LDP man-pages:3.25:2010/06/20:cfgetispeed:3:termios:3:
+@:LDP man-pages:3.25:2010/06/20:cfgetospeed:3:termios:3:
+@:LDP man-pages:3.25:2010/06/20:cfmakeraw:3:termios:3:
+○:LDP man-pages:3.25:2007/07/26:cfree:3:2004/08/14::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.25:2010/06/20:cfsetispeed:3:termios:3:
+@:LDP man-pages:3.25:2010/06/20:cfsetospeed:3:termios:3:
+@:LDP man-pages:3.25:2010/06/20:cfsetspeed:3:termios:3:
+○:LDP man-pages:3.25:2007/12/23:cimag:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2007/12/23:cimagf:3:cimag:3:
+@:LDP man-pages:3.25:2007/12/23:cimagl:3:cimag:3:
+○:LDP man-pages:3.25:2007/07/26:clearenv:3:2002/08/20::ysato@h4.dion.ne.jp:Yuichi SATO:
+@:LDP man-pages:3.25:2008/08/29:clearerr:3:ferror:3:
+@:LDP man-pages:3.25:2008/08/29:clearerr_unlocked:3:unlocked_stdio:3:
+@:LDP man-pages:3.25:2008/07/17:clnt_broadcast:3:rpc:3:
+@:LDP man-pages:3.25:2008/07/17:clnt_call:3:rpc:3:
+@:LDP man-pages:3.25:2008/07/17:clnt_control:3:rpc:3:
+@:LDP man-pages:3.25:2008/07/17:clnt_create:3:rpc:3:
+@:LDP man-pages:3.25:2008/07/17:clnt_destroy:3:rpc:3:
+@:LDP man-pages:3.25:2008/07/17:clnt_freeres:3:rpc:3:
+@:LDP man-pages:3.25:2008/07/17:clnt_geterr:3:rpc:3:
+@:LDP man-pages:3.25:2008/07/17:clnt_pcreateerror:3:rpc:3:
+@:LDP man-pages:3.25:2008/07/17:clnt_perrno:3:rpc:3:
+@:LDP man-pages:3.25:2008/07/17:clnt_perror:3:rpc:3:
+@:LDP man-pages:3.25:2008/07/17:clnt_spcreateerror:3:rpc:3:
+@:LDP man-pages:3.25:2008/07/17:clnt_sperrno:3:rpc:3:
+@:LDP man-pages:3.25:2008/07/17:clnt_sperror:3:rpc:3:
+@:LDP man-pages:3.25:2008/07/17:clntraw_create:3:rpc:3:
+@:LDP man-pages:3.25:2008/07/17:clnttcp_create:3:rpc:3:
+@:LDP man-pages:3.25:2008/07/17:clntudp_bufcreate:3:rpc:3:
+@:LDP man-pages:3.25:2008/07/17:clntudp_create:3:rpc:3:
+○:LDP man-pages:3.25:2008/08/28:clock:3:2007/06/01::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+×:LDP man-pages:3.25:2009/02/20:clock_getcpuclockid:3:::::
+@:LDP man-pages:3.25:2010/02/03:clock_getres:3:clock_getres:2:
+@:LDP man-pages:3.25:2010/02/03:clock_gettime:3:clock_getres:2:
+@:LDP man-pages:3.25:2010/02/03:clock_settime:3:clock_getres:2:
+○:LDP man-pages:3.25:2007/12/26:clog:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2002/07/28:clog10:3:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2002/07/28:clog10f:3:clog10:3:
+@:LDP man-pages:3.25:2002/07/28:clog10l:3:clog10:3:
+○:LDP man-pages:3.25:2002/07/28:clog2:3:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2002/07/28:clog2f:3:clog2:3:
+@:LDP man-pages:3.25:2002/07/28:clog2l:3:clog2:3:
+@:LDP man-pages:3.25:2007/12/26:clogf:3:clog:3:
+@:LDP man-pages:3.25:2007/12/26:clogl:3:clog:3:
+○:LDP man-pages:3.25:2008/09/23:closedir:3:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.25:2008/11/12:closelog:3:syslog:3:
+○:LDP man-pages:3.25:2008/11/20:cmsg:3:1999/08/17::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.25:2010/02/03:confstr:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2007/12/26:conj:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2007/12/26:conjf:3:conj:3:
+@:LDP man-pages:3.25:2007/12/26:conjl:3:conj:3:
+○:LDP man-pages:3.25:2008/08/05:copysign:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/08/05:copysignf:3:copysign:3:
+@:LDP man-pages:3.25:2008/08/05:copysignl:3:copysign:3:
+○:LDP man-pages:3.25:2009/02/04:cos:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2009/02/04:cosf:3:cos:3:
+○:LDP man-pages:3.25:2008/08/10:cosh:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/08/10:coshf:3:cosh:3:
+@:LDP man-pages:3.25:2008/08/10:coshl:3:cosh:3:
+@:LDP man-pages:3.25:2009/02/04:cosl:3:cos:3:
+○:LDP man-pages:3.25:2002/07/28:cpow:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2002/07/28:cpowf:3:cpow:3:
+@:LDP man-pages:3.25:2002/07/28:cpowl:3:cpow:3:
+☆:LDP man-pages:3.24=>3.25:2010/06/10:cproj:3:2005/03/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2010/06/10:cprojf:3:cproj:3:
+@:LDP man-pages:3.25:2010/06/10:cprojl:3:cproj:3:
+○:LDP man-pages:3.25:2007/12/26:creal:3:2003/07/28::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2007/12/26:crealf:3:creal:3:
+@:LDP man-pages:3.25:2007/12/26:creall:3:creal:3:
+☆:LDP man-pages:3.24=>3.25:2010/06/20:crypt:3:2008/10/08::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.25:2010/06/20:crypt_r:3:crypt:3:
+○:LDP man-pages:3.25:2007/12/26:csin:3:2003/07/28::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2007/12/26:csinf:3:csin:3:
+○:LDP man-pages:3.25:2007/12/26:csinh:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2007/12/26:csinhf:3:csinh:3:
+@:LDP man-pages:3.25:2007/12/26:csinhl:3:csinh:3:
+@:LDP man-pages:3.25:2007/12/26:csinl:3:csin:3:
+○:LDP man-pages:3.25:2008/08/11:csqrt:3:2003/08/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/08/11:csqrtf:3:csqrt:3:
+@:LDP man-pages:3.25:2008/08/11:csqrtl:3:csqrt:3:
+○:LDP man-pages:3.25:2007/12/26:ctan:3:2005/02/21::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2007/12/26:ctanf:3:ctan:3:
+○:LDP man-pages:3.25:2007/12/26:ctanh:3:2005/02/21::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2007/12/26:ctanhf:3:ctanh:3:
+@:LDP man-pages:3.25:2007/12/26:ctanhl:3:ctanh:3:
+@:LDP man-pages:3.25:2007/12/26:ctanl:3:ctan:3:
+○:LDP man-pages:3.25:2007/07/26:ctermid:3:1997/2/10::nagoya@cc.hit-u.ac.jp:NAGOYA Hiroaki:
+○:LDP man-pages:3.25:2010/02/25:ctime:3:2008/11/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2010/02/25:ctime_r:3:ctime:3:
+@:LDP man-pages:3.25:2008/06/29:cuserid:3:getlogin:3:
+○:LDP man-pages:3.25:2009/12/05:daemon:3:2002/01/14::ysato@h4.dion.ne.jp:Yuichi SATO:
+@:LDP man-pages:3.25:2010/02/25:daylight:3:tzset:3:
+@:LDP man-pages:3.25:1994/01/02:db:3:dbopen:3:
+○:LDP man-pages:3.25:1994/01/02:dbopen:3:1999/08/19::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.25:2007/05/18:des_crypt:3:2004/08/14::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.25:2007/05/18:des_setparity:3:des_crypt:3:
+○:LDP man-pages:3.25:2010/02/25:difftime:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/08/21:dirfd:3:2003/10/15::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.25:2009/03/30:dirname:3:basename:3:
+○:LDP man-pages:3.25:2007/07/26:div:3:2004/06/13::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2007/05/18:dl_iterate_phdr:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.25:2008/12/06:dladdr:3:dlopen:3:
+@:LDP man-pages:3.25:2008/12/06:dlclose:3:dlopen:3:
+@:LDP man-pages:3.25:2008/12/06:dlerror:3:dlopen:3:
+○:LDP man-pages:3.25:2008/12/06:dlopen:3:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/12/06:dlsym:3:dlopen:3:
+@:LDP man-pages:3.25:2008/12/06:dlvsym:3:dlopen:3:
+@:LDP man-pages:3.25:2010/06/17:dn_comp:3:resolver:3:
+@:LDP man-pages:3.25:2010/06/17:dn_expand:3:resolver:3:
+○:LDP man-pages:3.25:2008/06/14:dprintf:3:2002/01/14::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.25:2007/07/26:drand48:3:1997/01/20::tyoshino@eng.toyo.ac.jp:YOSHINO Takashi:
+○:LDP man-pages:3.25:2007/07/26:drand48_r:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.25:2009/02/04:drem:3:remainder:3:
+@:LDP man-pages:3.25:2009/02/04:dremf:3:remainder:3:
+@:LDP man-pages:3.25:2009/02/04:dreml:3:remainder:3:
+○:LDP man-pages:3.25:2007/07/26:dysize:3:2002/01/06::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+@:LDP man-pages:3.25:2007/07/26:eaccess:3:euidaccess:3:
+@:LDP man-pages:3.25:2007/05/18:ecb_crypt:3:des_crypt:3:
+○:LDP man-pages:3.25:2009/03/15:ecvt:3:2009/05/14::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.25:2007/07/26:ecvt_r:3:2002/09/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/07/17:edata:3:end:3:
+○:LDP man-pages:3.25:2003/04/04:encrypt:3:2004/02/06::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.25:2003/04/04:encrypt_r:3:encrypt:3:
+○:LDP man-pages:3.25:2008/07/17:end:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2003/09/09:endaliasent:3:setaliasent:3:
+@:LDP man-pages:3.25:2002/02/28:endfsent:3:getfsent:3:
+@:LDP man-pages:3.25:2009/03/30:endgrent:3:getgrent:3:
+@:LDP man-pages:3.25:2009/12/03:endhostent:3:gethostbyname:3:
+×:LDP man-pages:3.25:2009/01/19:endian:3:::::
+@:LDP man-pages:3.25:2009/09/15:endmntent:3:getmntent:3:
+@:LDP man-pages:3.25:2008/08/19:endnetent:3:getnetent:3:
+@:LDP man-pages:3.25:2007/07/26:endnetgrent:3:setnetgrent:3:
+@:LDP man-pages:3.25:2008/08/19:endprotoent:3:getprotoent:3:
+@:LDP man-pages:3.25:2009/03/30:endpwent:3:getpwent:3:
+@:LDP man-pages:3.25:2008/08/19:endrpcent:3:getrpcent:3:
+@:LDP man-pages:3.25:2008/08/19:endservent:3:getservent:3:
+@:LDP man-pages:3.25:2010/02/25:endspent:3:getspnam:3:
+@:LDP man-pages:3.25:2002/07/18:endttyent:3:getttyent:3:
+@:LDP man-pages:3.25:2007/07/26:endusershell:3:getusershell:3:
+@:LDP man-pages:3.25:2008/06/29:endutent:3:getutent:3:
+@:LDP man-pages:3.25:2008/06/29:endutxent:3:getutent:3:
+@:LDP man-pages:3.25:2007/05/18:envz:3:envz_add:3:
+○:LDP man-pages:3.25:2007/05/18:envz_add:3:2003/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2007/05/18:envz_entry:3:envz_add:3:
+@:LDP man-pages:3.25:2007/05/18:envz_get:3:envz_add:3:
+@:LDP man-pages:3.25:2007/05/18:envz_merge:3:envz_add:3:
+@:LDP man-pages:3.25:2007/05/18:envz_remove:3:envz_add:3:
+@:LDP man-pages:3.25:2007/05/18:envz_strip:3:envz_add:3:
+@:LDP man-pages:3.25:2007/07/26:erand48:3:drand48:3:
+@:LDP man-pages:3.25:2007/07/26:erand48_r:3:drand48_r:3:
+○:LDP man-pages:3.25:2008/08/05:erf:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/08/05:erfc:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/08/05:erfcf:3:erfc:3:
+@:LDP man-pages:3.25:2008/08/05:erfcl:3:erfc:3:
+@:LDP man-pages:3.25:2008/08/05:erff:3:erf:3:
+@:LDP man-pages:3.25:2008/08/05:erfl:3:erf:3:
+○:LDP man-pages:3.25:2007/12/28:err:3:2003/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/07/09:errno:3:2006/07/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2006/04/25:error:3:2006/08/19::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.25:2006/04/25:error_at_line:3:error:3:
+@:LDP man-pages:3.25:2006/04/25:error_message_count:3:error:3:
+@:LDP man-pages:3.25:2006/04/25:error_on_per_line:3:error:3:
+@:LDP man-pages:3.25:2006/04/25:error_print_progname:3:error:3:
+@:LDP man-pages:3.25:2007/12/28:errx:3:err:3:
+@:LDP man-pages:3.25:2008/07/17:etext:3:end:3:
+○:LDP man-pages:3.25:2002/07/20:ether_aton:3:2002/09/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2002/07/20:ether_aton_r:3:ether_aton:3:
+@:LDP man-pages:3.25:2002/07/20:ether_hostton:3:ether_aton:3:
+@:LDP man-pages:3.25:2002/07/20:ether_line:3:ether_aton:3:
+@:LDP man-pages:3.25:2002/07/20:ether_ntoa:3:ether_aton:3:
+@:LDP man-pages:3.25:2002/07/20:ether_ntoa_r:3:ether_aton:3:
+@:LDP man-pages:3.25:2002/07/20:ether_ntohost:3:ether_aton:3:
+○:LDP man-pages:3.25:2007/07/26:euidaccess:3:2007/06/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2009/01/26:eventfd_read:3:eventfd:2:
+@:LDP man-pages:3.25:2009/01/26:eventfd_write:3:eventfd:2:
+○:LDP man-pages:3.25:2009/02/22:exec:3:2005/03/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2009/02/22:execl:3:exec:3:
+@:LDP man-pages:3.25:2009/02/22:execle:3:exec:3:
+@:LDP man-pages:3.25:2009/02/22:execlp:3:exec:3:
+@:LDP man-pages:3.25:2009/02/22:execv:3:exec:3:
+@:LDP man-pages:3.25:2009/02/22:execvp:3:exec:3:
+○:LDP man-pages:3.25:2009/09/20:exit:3:2007/06/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/08/05:exp:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/08/11:exp10:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/08/11:exp10f:3:exp10:3:
+@:LDP man-pages:3.25:2008/08/11:exp10l:3:exp10:3:
+○:LDP man-pages:3.25:2008/08/11:exp2:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/08/11:exp2f:3:exp2:3:
+@:LDP man-pages:3.25:2008/08/11:exp2l:3:exp2:3:
+@:LDP man-pages:3.25:2008/08/05:expf:3:exp:3:
+@:LDP man-pages:3.25:2008/08/05:expl:3:exp:3:
+○:LDP man-pages:3.25:2008/08/05:expm1:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/08/05:expm1f:3:expm1:3:
+@:LDP man-pages:3.25:2008/08/05:expm1l:3:expm1:3:
+○:LDP man-pages:3.25:2008/08/05:fabs:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/08/05:fabsf:3:fabs:3:
+@:LDP man-pages:3.25:2008/08/05:fabsl:3:fabs:3:
+○:LDP man-pages:3.25:2009/02/23:fclose:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2006/12/27:fcloseall:3:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2009/03/15:fcvt:3:ecvt:3:
+@:LDP man-pages:3.25:2007/07/26:fcvt_r:3:ecvt_r:3:
+○:LDP man-pages:3.25:2008/08/11:fdim:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/08/11:fdimf:3:fdim:3:
+@:LDP man-pages:3.25:2008/08/11:fdiml:3:fdim:3:
+@:LDP man-pages:3.25:2009/02/23:fdopen:3:fopen:3:
+@:LDP man-pages:3.25:2010/06/20:fdopendir:3:opendir:3:
+@:LDP man-pages:3.25:2008/08/11:feclearexcept:3:fenv:3:
+@:LDP man-pages:3.25:2008/08/11:fedisableexcept:3:fenv:3:
+@:LDP man-pages:3.25:2008/08/11:feenableexcept:3:fenv:3:
+@:LDP man-pages:3.25:2008/08/11:fegetenv:3:fenv:3:
+@:LDP man-pages:3.25:2008/08/11:fegetexcept:3:fenv:3:
+@:LDP man-pages:3.25:2008/08/11:fegetexceptflag:3:fenv:3:
+@:LDP man-pages:3.25:2008/08/11:fegetround:3:fenv:3:
+@:LDP man-pages:3.25:2008/08/11:feholdexcept:3:fenv:3:
+☆:LDP man-pages:3.24=>3.25:2008/08/11:fenv:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/08/29:feof:3:ferror:3:
+@:LDP man-pages:3.25:2008/08/29:feof_unlocked:3:unlocked_stdio:3:
+@:LDP man-pages:3.25:2008/08/11:feraiseexcept:3:fenv:3:
+○:LDP man-pages:3.25:2008/08/29:ferror:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.25:2008/08/29:ferror_unlocked:3:unlocked_stdio:3:
+@:LDP man-pages:3.25:2008/08/11:fesetenv:3:fenv:3:
+@:LDP man-pages:3.25:2008/08/11:fesetexceptflag:3:fenv:3:
+@:LDP man-pages:3.25:2008/08/11:fesetround:3:fenv:3:
+@:LDP man-pages:3.25:2008/08/11:fetestexcept:3:fenv:3:
+@:LDP man-pages:3.25:2008/08/11:feupdateenv:3:fenv:3:
+○:LDP man-pages:3.25:2009/02/04:fexecve:3:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2009/09/06:fflush:3:2001/11/09::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.25:2008/08/29:fflush_unlocked:3:unlocked_stdio:3:
+○:LDP man-pages:3.25:2009/08/27:ffs:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.25:2009/08/27:ffsl:3:ffs:3:
+@:LDP man-pages:3.25:2009/08/27:ffsll:3:ffs:3:
+@:LDP man-pages:3.25:2008/08/06:fgetc:3:gets:3:
+@:LDP man-pages:3.25:2008/08/29:fgetc_unlocked:3:unlocked_stdio:3:
+○:LDP man-pages:3.25:2008/07/10:fgetgrent:3:1997/12/19::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
+@:LDP man-pages:3.25:2007/07/26:fgetgrent_r:3:getgrent_r:3:
+@:LDP man-pages:3.25:1993/11/29:fgetpos:3:fseek:3:
+○:LDP man-pages:3.25:2008/07/10:fgetpwent:3:1997/12/18::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
+@:LDP man-pages:3.25:2007/07/26:fgetpwent_r:3:getpwent_r:3:
+@:LDP man-pages:3.25:2008/08/06:fgets:3:gets:3:
+@:LDP man-pages:3.25:2008/08/29:fgets_unlocked:3:unlocked_stdio:3:
+@:LDP man-pages:3.25:2010/02/25:fgetspent:3:getspnam:3:
+@:LDP man-pages:3.25:2010/02/25:fgetspent_r:3:getspnam:3:
+○:LDP man-pages:3.25:1999/07/25:fgetwc:3:2001/11/09::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.25:2008/08/29:fgetwc_unlocked:3:unlocked_stdio:3:
+○:LDP man-pages:3.25:1999/07/25:fgetws:3:2001/11/09::ysato@h4.dion.ne.jp:Yuichi SATO:
+@:LDP man-pages:3.25:2008/08/29:fgetws_unlocked:3:unlocked_stdio:3:
+@:LDP man-pages:3.25:2008/08/29:fileno:3:ferror:3:
+@:LDP man-pages:3.25:2008/08/29:fileno_unlocked:3:unlocked_stdio:3:
+○:LDP man-pages:3.25:2008/08/05:finite:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/08/05:finitef:3:finite:3:
+@:LDP man-pages:3.25:2008/08/05:finitel:3:finite:3:
+○:LDP man-pages:3.25:2008/08/29:flockfile:3:2001/11/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/10/06:floor:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/10/06:floorf:3:floor:3:
+@:LDP man-pages:3.25:2008/10/06:floorl:3:floor:3:
+○:LDP man-pages:3.25:2008/10/06:fma:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/10/06:fmaf:3:fma:3:
+@:LDP man-pages:3.25:2008/10/06:fmal:3:fma:3:
+○:LDP man-pages:3.25:2008/08/11:fmax:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/08/11:fmaxf:3:fmax:3:
+@:LDP man-pages:3.25:2008/08/11:fmaxl:3:fmax:3:
+☆:LDP man-pages:3.24=>3.25:2010/06/10:fmemopen:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/08/11:fmin:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/08/11:fminf:3:fmin:3:
+@:LDP man-pages:3.25:2008/08/11:fminl:3:fmin:3:
+○:LDP man-pages:3.25:2008/08/05:fmod:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/08/05:fmodf:3:fmod:3:
+@:LDP man-pages:3.25:2008/08/05:fmodl:3:fmod:3:
+○:LDP man-pages:3.25:2008/06/14:fmtmsg:3:2004/08/14::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2000/10/15:fnmatch:3:2006/03/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2009/02/23:fopen:3:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+×:LDP man-pages:3.25:2008/12/05:fopencookie:3:::::
+@:LDP man-pages:3.25:2010/06/13:forkpty:3:openpty:3:
+○:LDP man-pages:3.25:1993/04/04:fpathconf:3:1998/03/20::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.25:2008/08/07:fpclassify:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/12/19:fprintf:3:printf:3:
+○:LDP man-pages:3.25:2001/12/15:fpurge:3:2002/01/14::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+@:LDP man-pages:3.25:1993/04/04:fputc:3:puts:3:
+@:LDP man-pages:3.25:2008/08/29:fputc_unlocked:3:unlocked_stdio:3:
+@:LDP man-pages:3.25:1993/04/04:fputs:3:puts:3:
+@:LDP man-pages:3.25:2008/08/29:fputs_unlocked:3:unlocked_stdio:3:
+○:LDP man-pages:3.25:1999/07/25:fputwc:3:2001/11/09::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.25:2008/08/29:fputwc_unlocked:3:unlocked_stdio:3:
+○:LDP man-pages:3.25:1999/07/25:fputws:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.25:2008/08/29:fputws_unlocked:3:unlocked_stdio:3:
+○:LDP man-pages:3.25:1996/05/17:fread:3:2001/11/09::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.25:2008/08/29:fread_unlocked:3:unlocked_stdio:3:
+@:LDP man-pages:3.25:2009/01/13:free:3:malloc:3:
+@:LDP man-pages:3.25:2010/06/17:freeaddrinfo:3:getaddrinfo:3:
+@:LDP man-pages:3.25:2007/11/15:freehostent:3:getipnodebyname:3:
+※:LDP man-pages:3.25:2009/01/23:freeifaddrs:3:getifaddrs:3:
+@:LDP man-pages:3.25:2009/02/23:freopen:3:fopen:3:
+○:LDP man-pages:3.25:2008/10/29:frexp:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/10/29:frexpf:3:frexp:3:
+@:LDP man-pages:3.25:2008/10/29:frexpl:3:frexp:3:
+@:LDP man-pages:3.25:2008/07/12:fscanf:3:scanf:3:
+○:LDP man-pages:3.25:1993/11/29:fseek:3:1998/04/27::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.25:2001/11/05:fseeko:3:2006/01/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:1993/11/29:fsetpos:3:fseek:3:
+※:LDP man-pages:3.25:2003/08/22:fstatvfs:3:statvfs:3:
+@:LDP man-pages:3.25:1993/11/29:ftell:3:fseek:3:
+@:LDP man-pages:3.25:2001/11/05:ftello:3:fseeko:3:
+○:LDP man-pages:3.25:2010/02/25:ftime:3:2008/10/08::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.25:2001/11/28:ftok:3:2002/01/06::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+@:LDP man-pages:3.25:2008/08/29:ftrylockfile:3:flockfile:3:
+○:LDP man-pages:3.25:2007/12/28:fts:3:2000/09/05::sato@complex.eng.hokudai.ac.jp:Yuichi SATO:
+@:LDP man-pages:3.25:2007/12/28:fts_children:3:fts:3:
+@:LDP man-pages:3.25:2007/12/28:fts_close:3:fts:3:
+@:LDP man-pages:3.25:2007/12/28:fts_open:3:fts:3:
+@:LDP man-pages:3.25:2007/12/28:fts_read:3:fts:3:
+@:LDP man-pages:3.25:2007/12/28:fts_set:3:fts:3:
+☆:LDP man-pages:3.24=>3.25:2010/06/10:ftw:3:2006/07/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/08/29:funlockfile:3:flockfile:3:
+※:LDP man-pages:3.25:2009/12/13:futimens:3:utimensat:2:
+○:LDP man-pages:3.25:2008/04/07:futimes:3:2006/07/31::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2007/07/26:fwide:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+@:LDP man-pages:3.25:2007/07/26:fwprintf:3:wprintf:3:
+@:LDP man-pages:3.25:1996/05/17:fwrite:3:fread:3:
+@:LDP man-pages:3.25:2008/08/29:fwrite_unlocked:3:unlocked_stdio:3:
+@:LDP man-pages:3.25:2010/06/17:gai_strerror:3:getaddrinfo:3:
+○:LDP man-pages:3.25:2008/08/05:gamma:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/08/05:gammaf:3:gamma:3:
+@:LDP man-pages:3.25:2008/08/05:gammal:3:gamma:3:
+○:LDP man-pages:3.25:2009/03/15:gcvt:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2009/03/31:get_current_dir_name:3:getcwd:3:
+@:LDP man-pages:3.25:2008/07/17:get_myaddress:3:rpc:3:
+☆:LDP man-pages:3.24=>3.25:2010/06/17:getaddrinfo:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2003/09/09:getaliasbyname:3:setaliasent:3:
+@:LDP man-pages:3.25:2003/09/09:getaliasbyname_r:3:setaliasent:3:
+@:LDP man-pages:3.25:2003/09/09:getaliasent:3:setaliasent:3:
+@:LDP man-pages:3.25:2003/09/09:getaliasent_r:3:setaliasent:3:
+@:LDP man-pages:3.25:2008/08/06:getc:3:gets:3:
+@:LDP man-pages:3.25:2008/08/29:getc_unlocked:3:unlocked_stdio:3:
+@:LDP man-pages:3.25:2008/08/06:getchar:3:gets:3:
+@:LDP man-pages:3.25:2008/08/29:getchar_unlocked:3:unlocked_stdio:3:
+○:LDP man-pages:3.25:2009/03/31:getcwd:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.25:2008/09/07:getdate:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/09/07:getdate_err:3:getdate:3:
+@:LDP man-pages:3.25:2008/09/07:getdate_r:3:getdate:3:
+@:LDP man-pages:3.25:2010/06/12:getdelim:3:getline:3:
+○:LDP man-pages:3.25:2007/07/26:getdirentries:3:1998/04/30::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.25:2008/03/17:getenv:3:2003/09/28::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.25:2002/02/28:getfsent:3:2002/08/07::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+@:LDP man-pages:3.25:2002/02/28:getfsfile:3:getfsent:3:
+@:LDP man-pages:3.25:2002/02/28:getfsspec:3:getfsent:3:
+○:LDP man-pages:3.25:2009/03/30:getgrent:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2007/07/26:getgrent_r:3:2004/08/14::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.25:2009/03/30:getgrgid:3:getgrnam:3:
+@:LDP man-pages:3.25:2009/03/30:getgrgid_r:3:getgrnam:3:
+○:LDP man-pages:3.25:2009/03/30:getgrnam:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2009/03/30:getgrnam_r:3:getgrnam:3:
+○:LDP man-pages:3.25:2008/07/03:getgrouplist:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2009/12/03:gethostbyaddr:3:gethostbyname:3:
+@:LDP man-pages:3.25:2009/12/03:gethostbyaddr_r:3:gethostbyname:3:
+○:LDP man-pages:3.25:2009/12/03:gethostbyname:3:2007/06/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2009/12/03:gethostbyname2:3:gethostbyname:3:
+@:LDP man-pages:3.25:2009/12/03:gethostbyname2_r:3:gethostbyname:3:
+@:LDP man-pages:3.25:2009/12/03:gethostbyname_r:3:gethostbyname:3:
+@:LDP man-pages:3.25:2009/12/03:gethostent:3:gethostbyname:3:
+@:LDP man-pages:3.25:2009/12/03:gethostent_r:3:gethostbyname:3:
+○:LDP man-pages:3.25:2009/01/13:gethostid:3:::::
+×:LDP man-pages:3.25:2009/01/23:getifaddrs:3:::::
+@:LDP man-pages:3.25:2007/11/15:getipnodebyaddr:3:getipnodebyname:3:
+○:LDP man-pages:3.25:2007/11/15:getipnodebyname:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
+☆:LDP man-pages:3.24=>3.25:2010/06/12:getline:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:0000/00/00:getloadavg:3:2002/01/21::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.25:2008/06/29:getlogin:3:2005/03/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/06/29:getlogin_r:3:getlogin:3:
+○:LDP man-pages:3.25:2009/09/15:getmntent:3:2005/03/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2009/09/15:getmntent_r:3:getmntent:3:
+○:LDP man-pages:3.25:2009/12/03:getnameinfo:3:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/08/19:getnetbyaddr:3:getnetent:3:
+※:LDP man-pages:3.25:2009/02/21:getnetbyaddr_r:3:getnetent_r:3:
+@:LDP man-pages:3.25:2008/08/19:getnetbyname:3:getnetent:3:
+※:LDP man-pages:3.25:2009/02/21:getnetbyname_r:3:getnetent_r:3:
+○:LDP man-pages:3.25:2008/08/19:getnetent:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+×:LDP man-pages:3.25:2009/02/21:getnetent_r:3:::::
+@:LDP man-pages:3.25:2007/07/26:getnetgrent:3:setnetgrent:3:
+@:LDP man-pages:3.25:2007/07/26:getnetgrent_r:3:setnetgrent:3:
+○:LDP man-pages:3.25:2010/02/03:getopt:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2010/02/03:getopt_long:3:getopt:3:
+@:LDP man-pages:3.25:2010/02/03:getopt_long_only:3:getopt:3:
+☆:LDP man-pages:3.24=>3.25:2000/12/05:getpass:3:2001/02/14::nakano@apm.seikei.ac.jp:NAKANO Takeo:Older ver. is in obsolete/
+@:LDP man-pages:3.25:2008/08/19:getprotobyname:3:getprotoent:3:
+※:LDP man-pages:3.25:2008/08/19:getprotobyname_r:3:getprotoent_r:3:
+@:LDP man-pages:3.25:2008/08/19:getprotobynumber:3:getprotoent:3:
+※:LDP man-pages:3.25:2008/08/19:getprotobynumber_r:3:getprotoent_r:3:
+○:LDP man-pages:3.25:2008/08/19:getprotoent:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+×:LDP man-pages:3.25:2008/08/19:getprotoent_r:3:::::
+○:LDP man-pages:3.25:2008/06/14:getpt:3:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2007/12/12:getpw:3:2008/10/08::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.25:2009/03/30:getpwent:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2007/07/26:getpwent_r:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2009/03/30:getpwnam:3:2005/10/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2009/03/30:getpwnam_r:3:getpwnam:3:
+@:LDP man-pages:3.25:2009/03/30:getpwuid:3:getpwnam:3:
+@:LDP man-pages:3.25:2009/03/30:getpwuid_r:3:getpwnam:3:
+@:LDP man-pages:3.25:2008/08/19:getrpcbyname:3:getrpcent:3:
+※:LDP man-pages:3.25:2008/08/19:getrpcbyname_r:3:getrpcent_r:3:
+@:LDP man-pages:3.25:2008/08/19:getrpcbynumber:3:getrpcent:3:
+※:LDP man-pages:3.25:2008/08/19:getrpcbynumber_r:3:getrpcent_r:3:
+○:LDP man-pages:3.25:2008/08/19:getrpcent:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+×:LDP man-pages:3.25:2008/08/19:getrpcent_r:3:::::
+○:LDP man-pages:3.25:1987/10/06:getrpcport:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+○:LDP man-pages:3.25:2008/08/06:gets:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/08/19:getservbyname:3:getservent:3:
+※:LDP man-pages:3.25:2008/08/19:getservbyname_r:3:getservent_r:3:
+@:LDP man-pages:3.25:2008/08/19:getservbyport:3:getservent:3:
+※:LDP man-pages:3.25:2008/08/19:getservbyport_r:3:getservent_r:3:
+○:LDP man-pages:3.25:2008/08/19:getservent:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+×:LDP man-pages:3.25:2008/08/19:getservent_r:3:::::
+@:LDP man-pages:3.25:2010/02/25:getspent:3:getspnam:3:
+@:LDP man-pages:3.25:2010/02/25:getspent_r:3:getspnam:3:
+○:LDP man-pages:3.25:2010/02/25:getspnam:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2010/02/25:getspnam_r:3:getspnam:3:
+○:LDP man-pages:3.25:2008/05/29:getsubopt:3:2007/06/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2002/07/18:getttyent:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.25:2002/07/18:getttynam:3:getttyent:3:
+○:LDP man-pages:3.25:2009/01/20:getumask:3:2003/02/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2007/07/26:getusershell:3:1998/02/05::ishioka@dad.eec.toshiba.co.jp:ISHIOKA Takashi:
+○:LDP man-pages:3.25:2008/06/29:getutent:3:2005/03/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/06/29:getutent_r:3:getutent:3:
+@:LDP man-pages:3.25:2008/06/29:getutid:3:getutent:3:
+@:LDP man-pages:3.25:2008/06/29:getutid_r:3:getutent:3:
+@:LDP man-pages:3.25:2008/06/29:getutline:3:getutent:3:
+@:LDP man-pages:3.25:2008/06/29:getutline_r:3:getutent:3:
+×:LDP man-pages:3.25:2008/07/02:getutmp:3:::::
+※:LDP man-pages:3.25:2008/07/02:getutmpx:3:getutmp:3:
+@:LDP man-pages:3.25:2008/06/29:getutxent:3:getutent:3:
+@:LDP man-pages:3.25:2008/06/29:getutxid:3:getutent:3:
+@:LDP man-pages:3.25:2008/06/29:getutxline:3:getutent:3:
+○:LDP man-pages:3.25:2007/12/20:getw:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.25:1999/07/25:getwc:3:fgetwc:3:
+@:LDP man-pages:3.25:2008/08/29:getwc_unlocked:3:unlocked_stdio:3:
+○:LDP man-pages:3.25:1999/07/25:getwchar:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.25:2008/08/29:getwchar_unlocked:3:unlocked_stdio:3:
+@:LDP man-pages:3.25:2009/03/31:getwd:3:getcwd:3:
+○:LDP man-pages:3.25:2007/10/10:glob:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.25:2007/10/10:globfree:3:glob:3:
+@:LDP man-pages:3.25:2010/02/25:gmtime:3:ctime:3:
+@:LDP man-pages:3.25:2010/02/25:gmtime_r:3:ctime:3:
+※:LDP man-pages:3.25:2008/12/01:gnu_dev_major:3:makedev:3:
+※:LDP man-pages:3.25:2008/12/01:gnu_dev_makedev:3:makedev:3:
+※:LDP man-pages:3.25:2008/12/01:gnu_dev_minor:3:makedev:3:
+@:LDP man-pages:3.25:2008/07/02:gnu_get_libc_release:3:gnu_get_libc_version:3:
+○:LDP man-pages:3.25:2008/07/02:gnu_get_libc_version:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/06/14:grantpt:3:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2007/07/26:gsignal:3:2003/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2009/12/03:h_errno:3:gethostbyname:3:
+○:LDP man-pages:3.25:1994/08/18:hash:3:1999/08/17::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+@:LDP man-pages:3.25:2009/09/15:hasmntopt:3:getmntent:3:
+@:LDP man-pages:3.25:2008/10/06:hcreate:3:hsearch:3:
+@:LDP man-pages:3.25:2008/10/06:hcreate_r:3:hsearch:3:
+@:LDP man-pages:3.25:2008/10/06:hdestroy:3:hsearch:3:
+@:LDP man-pages:3.25:2008/10/06:hdestroy_r:3:hsearch:3:
+@:LDP man-pages:3.25:2009/12/03:herror:3:gethostbyname:3:
+○:LDP man-pages:3.25:2008/10/06:hsearch:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/10/06:hsearch_r:3:hsearch:3:
+@:LDP man-pages:3.25:2009/12/03:hstrerror:3:gethostbyname:3:
+※:LDP man-pages:3.25:2009/01/19:htobe16:3:endian:3:
+※:LDP man-pages:3.25:2009/01/19:htobe32:3:endian:3:
+※:LDP man-pages:3.25:2009/01/19:htobe64:3:endian:3:
+※:LDP man-pages:3.25:2009/01/19:htole16:3:endian:3:
+※:LDP man-pages:3.25:2009/01/19:htole32:3:endian:3:
+※:LDP man-pages:3.25:2009/01/19:htole64:3:endian:3:
+@:LDP man-pages:3.25:2009/01/15:htonl:3:byteorder:3:
+@:LDP man-pages:3.25:2009/01/15:htons:3:byteorder:3:
+○:LDP man-pages:3.25:2008/08/05:hypot:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/08/05:hypotf:3:hypot:3:
+@:LDP man-pages:3.25:2008/08/05:hypotl:3:hypot:3:
+○:LDP man-pages:3.25:2008/09/08:iconv:3:2000/07/11::sato@complex.eng.hokudai.ac.jp:Yuichi SATO:
+○:LDP man-pages:3.25:1999/11/27:iconv_close:3:2000/07/11::sato@complex.eng.hokudai.ac.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2007/03/31:iconv_open:3:2007/06/01::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2009/02/04:ilogb:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2009/02/04:ilogbf:3:ilogb:3:
+@:LDP man-pages:3.25:2009/02/04:ilogbl:3:ilogb:3:
+@:LDP man-pages:3.25:2007/07/26:imaxabs:3:abs:3:
+@:LDP man-pages:3.25:2007/07/26:imaxdiv:3:div:3:
+○:LDP man-pages:3.25:2009/03/15:index:3:1997/12/12::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
+○:LDP man-pages:3.25:2008/06/19:inet:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/06/19:inet_addr:3:inet:3:
+@:LDP man-pages:3.25:2008/06/19:inet_aton:3:inet:3:
+@:LDP man-pages:3.25:2008/06/19:inet_lnaof:3:inet:3:
+@:LDP man-pages:3.25:2008/06/19:inet_makeaddr:3:inet_addr:3:
+@:LDP man-pages:3.25:2008/06/19:inet_netof:3:inet:3:
+@:LDP man-pages:3.25:2008/06/19:inet_network:3:inet:3:
+@:LDP man-pages:3.25:2008/06/19:inet_ntoa:3:inet:3:
+○:LDP man-pages:3.25:2008/11/11:inet_ntop:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/06/18:inet_pton:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:1993/06/02:infnan:3:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2007/07/26:initgroups:3:2005/02/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2009/02/03:initstate:3:random:3:
+@:LDP man-pages:3.25:2008/03/07:initstate_r:3:random_r:3:
+@:LDP man-pages:3.25:2007/07/26:innetgr:3:setnetgrent:3:
+○:LDP man-pages:3.25:2008/07/11:insque:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.25:2010/02/03:intro:3:2008/02/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2007/12/28:iruserok:3:rcmd:3:
+@:LDP man-pages:3.25:2009/03/15:isalnum:3:isalpha:3:
+○:LDP man-pages:3.25:2009/03/15:isalpha:3:2007/05/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2009/03/15:isascii:3:isalpha:3:
+○:LDP man-pages:3.25:2008/12/03:isatty:3:1997/2/10::nagoya@cc.hit-u.ac.jp:NAGOYA Hiroaki:
+@:LDP man-pages:3.25:2009/03/15:isblank:3:isalpha:3:
+@:LDP man-pages:3.25:2009/03/15:iscntrl:3:isalpha:3:
+@:LDP man-pages:3.25:2009/03/15:isdigit:3:isalpha:3:
+@:LDP man-pages:3.25:2008/08/07:isfinite:3:fpclassify:3:
+@:LDP man-pages:3.25:2009/03/15:isgraph:3:isalpha:3:
+○:LDP man-pages:3.25:2008/08/05:isgreater:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/08/05:isgreaterequal:3:isgreater:3:
+@:LDP man-pages:3.25:2008/08/07:isinf:3:fpclassify:3:
+@:LDP man-pages:3.25:2008/08/05:isinff:3:finite:3:
+@:LDP man-pages:3.25:2008/08/05:isinfl:3:finite:3:
+@:LDP man-pages:3.25:2008/08/05:isless:3:isgreater:3:
+@:LDP man-pages:3.25:2008/08/05:islessequal:3:isgreater:3:
+@:LDP man-pages:3.25:2008/08/05:islessgreater:3:isgreater:3:
+@:LDP man-pages:3.25:2009/03/15:islower:3:isalpha:3:
+@:LDP man-pages:3.25:2008/08/07:isnan:3:fpclassify:3:
+@:LDP man-pages:3.25:2008/08/05:isnanf:3:finite:3:
+@:LDP man-pages:3.25:2008/08/05:isnanl:3:finite:3:
+@:LDP man-pages:3.25:2008/08/07:isnormal:3:fpclassify:3:
+@:LDP man-pages:3.25:2009/03/15:isprint:3:isalpha:3:
+@:LDP man-pages:3.25:2009/03/15:ispunct:3:isalpha:3:
+@:LDP man-pages:3.25:2009/03/15:isspace:3:isalpha:3:
+@:LDP man-pages:3.25:2008/08/05:isunordered:3:isgreater:3:
+@:LDP man-pages:3.25:2009/03/15:isupper:3:isalpha:3:
+○:LDP man-pages:3.25:1999/07/25:iswalnum:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.25:1999/07/25:iswalpha:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.25:2007/07/26:iswblank:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.25:1999/07/25:iswcntrl:3:1999/09/12::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.25:1999/07/25:iswctype:3:1999/09/12::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.25:1999/07/25:iswdigit:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.25:1999/07/25:iswgraph:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.25:1999/07/25:iswlower:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.25:1999/07/25:iswprint:3:1999/09/12::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.25:1999/07/25:iswpunct:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.25:1999/07/25:iswspace:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.25:1999/07/25:iswupper:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.25:1999/07/25:iswxdigit:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.25:2009/03/15:isxdigit:3:isalpha:3:
+○:LDP man-pages:3.25:2008/08/05:j0:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/08/05:j0f:3:j0:3:
+@:LDP man-pages:3.25:2008/08/05:j0l:3:j0:3:
+@:LDP man-pages:3.25:2008/08/05:j1:3:j0:3:
+@:LDP man-pages:3.25:2008/08/05:j1f:3:j0:3:
+@:LDP man-pages:3.25:2008/08/05:j1l:3:j0:3:
+@:LDP man-pages:3.25:2008/08/05:jn:3:j0:3:
+@:LDP man-pages:3.25:2008/08/05:jnf:3:j0:3:
+@:LDP man-pages:3.25:2008/08/05:jnl:3:j0:3:
+@:LDP man-pages:3.25:2007/07/26:jrand48:3:drand48:3:
+@:LDP man-pages:3.25:2007/07/26:jrand48_r:3:drand48_r:3:
+@:LDP man-pages:3.25:2002/07/18:key_decryptsession:3:key_setsecret:3:
+@:LDP man-pages:3.25:2002/07/18:key_encryptsession:3:key_setsecret:3:
+@:LDP man-pages:3.25:2002/07/18:key_gendes:3:key_setsecret:3:
+@:LDP man-pages:3.25:2002/07/18:key_secretkey_is_set:3:key_setsecret:3:
+○:LDP man-pages:3.25:2002/07/18:key_setsecret:3:2003/02/01::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/06/20:klogctl:3:syslog:2:
+@:LDP man-pages:3.25:2007/07/26:l64a:3:a64l:3:
+@:LDP man-pages:3.25:2007/07/26:labs:3:abs:3:
+@:LDP man-pages:3.25:2010/02/25:lckpwdf:3:getspnam:3:
+@:LDP man-pages:3.25:2007/07/26:lcong48:3:drand48:3:
+@:LDP man-pages:3.25:2007/07/26:lcong48_r:3:drand48_r:3:
+○:LDP man-pages:3.25:2008/08/05:ldexp:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/08/05:ldexpf:3:ldexp:3:
+@:LDP man-pages:3.25:2008/08/05:ldexpl:3:ldexp:3:
+@:LDP man-pages:3.25:2007/07/26:ldiv:3:div:3:
+※:LDP man-pages:3.25:2009/01/19:le16toh:3:endian:3:
+※:LDP man-pages:3.25:2009/01/19:le32toh:3:endian:3:
+※:LDP man-pages:3.25:2009/01/19:le64toh:3:endian:3:
+@:LDP man-pages:3.25:1999/09/27:lfind:3:lsearch:3:
+○:LDP man-pages:3.25:2008/08/05:lgamma:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/08/05:lgamma_r:3:lgamma:3:
+@:LDP man-pages:3.25:2008/08/05:lgammaf:3:lgamma:3:
+@:LDP man-pages:3.25:2008/08/05:lgammaf_r:3:lgamma:3:
+@:LDP man-pages:3.25:2008/08/05:lgammal:3:lgamma:3:
+@:LDP man-pages:3.25:2008/08/05:lgammal_r:3:lgamma:3:
+@:LDP man-pages:3.25:2007/07/26:llabs:3:abs:3:
+@:LDP man-pages:3.25:2007/07/26:lldiv:3:div:3:
+@:LDP man-pages:3.25:2008/08/11:llrint:3:lrint:3:
+@:LDP man-pages:3.25:2008/08/11:llrintf:3:lrint:3:
+@:LDP man-pages:3.25:2008/08/11:llrintl:3:lrint:3:
+@:LDP man-pages:3.25:2008/08/11:llround:3:lround:3:
+@:LDP man-pages:3.25:2008/08/11:llroundf:3:lround:3:
+@:LDP man-pages:3.25:2008/08/11:llroundl:3:lround:3:
+○:LDP man-pages:3.25:1993/04/25:localeconv:3:1998/05/25::tyoshino@eng.toyo.ac.jp:Takashi Yoshino:
+@:LDP man-pages:3.25:2010/02/25:localtime:3:ctime:3:
+@:LDP man-pages:3.25:2010/02/25:localtime_r:3:ctime:3:
+○:LDP man-pages:3.25:2009/07/25:lockf:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.24=>3.25:2010/06/13:log:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.24=>3.25:2010/06/13:log10:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2010/06/13:log10f:3:log10:3:
+@:LDP man-pages:3.25:2010/06/13:log10l:3:log10:3:
+○:LDP man-pages:3.25:2008/08/05:log1p:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/08/05:log1pf:3:log1p:3:
+@:LDP man-pages:3.25:2008/08/05:log1pl:3:log1p:3:
+☆:LDP man-pages:3.24=>3.25:2010/06/13:log2:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2010/06/13:log2f:3:log2:3:
+@:LDP man-pages:3.25:2010/06/13:log2l:3:log2:3:
+○:LDP man-pages:3.25:2008/08/05:logb:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/08/05:logbf:3:logb:3:
+@:LDP man-pages:3.25:2008/08/05:logbl:3:logb:3:
+@:LDP man-pages:3.25:2010/06/13:logf:3:log:3:
+○:LDP man-pages:3.25:2004/05/06:login:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.25:2010/06/13:login_tty:3:openpty:3:
+@:LDP man-pages:3.25:2010/06/13:logl:3:log:3:
+@:LDP man-pages:3.25:2004/05/06:logout:3:login:3:
+@:LDP man-pages:3.25:2008/07/02:logwtmp:3:updwtmp:3:
+○:LDP man-pages:3.25:2009/01/13:longjmp:3:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2007/07/26:lrand48:3:drand48:3:
+@:LDP man-pages:3.25:2007/07/26:lrand48_r:3:drand48_r:3:
+○:LDP man-pages:3.25:2008/08/11:lrint:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/08/11:lrintf:3:lrint:3:
+@:LDP man-pages:3.25:2008/08/11:lrintl:3:lrint:3:
+○:LDP man-pages:3.25:2008/08/11:lround:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/08/11:lroundf:3:lround:3:
+@:LDP man-pages:3.25:2008/08/11:lroundl:3:lround:3:
+○:LDP man-pages:3.25:1999/09/27:lsearch:3:2005/03/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2004/12/11:lseek64:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.25:2008/04/07:lutimes:3:futimes:3:
+※:LDP man-pages:3.25:2008/12/01:major:3:makedev:3:
+○:LDP man-pages:3.25:2009/03/31:makecontext:3:2008/12/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+×:LDP man-pages:3.25:2008/12/01:makedev:3:::::
+○:LDP man-pages:3.25:2009/01/13:malloc:3:2007/10/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2002/07/20:malloc_hook:3:2003/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+×:LDP man-pages:3.25:2008/07/21:matherr:3:::::
+○:LDP man-pages:3.25:1999/07/25:mblen:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+○:LDP man-pages:3.25:1999/07/25:mbrlen:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+○:LDP man-pages:3.25:2001/11/22:mbrtowc:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.25:2000/11/20:mbsinit:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+○:LDP man-pages:3.25:2007/07/26:mbsnrtowcs:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+○:LDP man-pages:3.25:1999/07/25:mbsrtowcs:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+○:LDP man-pages:3.25:1999/07/25:mbstowcs:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+○:LDP man-pages:3.25:2001/07/04:mbtowc:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+@:LDP man-pages:3.25:2009/03/30:memalign:3:posix_memalign:3:
+○:LDP man-pages:3.25:2009/01/13:memccpy:3:1997/07/26::tyoshino@eng.toyo.ac.jp:Takashi Yoshino:
+○:LDP man-pages:3.25:2009/12/04:memchr:3:2004/01/17::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.25:1993/04/10:memcmp:3:1997/12/17::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
+○:LDP man-pages:3.25:1993/04/10:memcpy:3:1997/02/21::tyoshino@eng.toyo.ac.jp:Takashi Yoshino:
+○:LDP man-pages:3.25:2007/07/26:memfrob:3:1998/05/34::ishikawa@linux.or.jp:ISHIKAWA Mutsumi:
+○:LDP man-pages:3.25:2008/12/05:memmem:3:1997/12/17::tyoshino@eng.toyo.ac.jp:Takashi Yoshino:
+○:LDP man-pages:3.25:1993/04/10:memmove:3:2007/06/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/08/12:mempcpy:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.25:2009/12/04:memrchr:3:memchr:3:
+○:LDP man-pages:3.25:1993/04/11:memset:3:1997/02/21::tyoshino@eng.toyo.ac.jp:Takashi Yoshino:
+※:LDP man-pages:3.25:2008/12/01:minor:3:makedev:3:
+○:LDP man-pages:3.25:2007/07/26:mkdtemp:3:2001/11/09::ysato@h4.dion.ne.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2008/06/12:mkfifo:3:2008/10/08::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.25:2009/12/13:mkfifoat:3:2006/08/19::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.25:2010/06/19:mkostemp:3:mkstemp:3:
+@:LDP man-pages:3.25:2010/06/19:mkostemps:3:mkstemp:3:
+☆:LDP man-pages:3.24=>3.25:2010/06/19:mkstemp:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2010/06/19:mkstemps:3:mkstemp:3:
+○:LDP man-pages:3.25:2007/07/26:mktemp:3:1999/04/10::tanisako@osa.dec.com:Kazuyuki Tanisako:
+@:LDP man-pages:3.25:2010/02/25:mktime:3:ctime:3:
+@:LDP man-pages:3.25:2008/04/22:mmap64:3:mmap2:2:
+○:LDP man-pages:3.25:2008/08/05:modf:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/08/05:modff:3:modf:3:
+@:LDP man-pages:3.25:2008/08/05:modfl:3:modf:3:
+○:LDP man-pages:3.25:1993/06/04:mpool:3:1999/08/19::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.25:2006/02/25:mq_close:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/09/29:mq_getattr:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2009/09/15:mq_notify:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2009/02/20:mq_open:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2010/02/25:mq_receive:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2010/02/25:mq_send:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/09/29:mq_setattr:3:mq_getattr:3:
+@:LDP man-pages:3.25:2010/02/25:mq_timedreceive:3:mq_receive:3:
+@:LDP man-pages:3.25:2010/02/25:mq_timedsend:3:mq_send:3:
+○:LDP man-pages:3.25:2006/02/25:mq_unlink:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2007/07/26:mrand48:3:drand48:3:
+@:LDP man-pages:3.25:2007/07/26:mrand48_r:3:drand48_r:3:
+○:LDP man-pages:3.25:2002/07/20:mtrace:3:2003/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2002/07/20:muntrace:3:mtrace:3:
+○:LDP man-pages:3.25:2008/08/11:nan:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/08/11:nanf:3:nan:3:
+@:LDP man-pages:3.25:2008/08/11:nanl:3:nan:3:
+@:LDP man-pages:3.25:2008/08/05:nearbyint:3:rint:3:
+@:LDP man-pages:3.25:2008/08/05:nearbyintf:3:rint:3:
+@:LDP man-pages:3.25:2008/08/05:nearbyintl:3:rint:3:
+○:LDP man-pages:3.25:1999/05/14:netlink:3:1999/08/20::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.25:2009/12/05:nextafter:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2009/12/05:nextafterf:3:nextafter:3:
+@:LDP man-pages:3.25:2009/12/05:nextafterl:3:nextafter:3:
+@:LDP man-pages:3.25:2009/12/05:nexttoward:3:nextafter:3:
+@:LDP man-pages:3.25:2009/12/05:nexttowardf:3:nextafter:3:
+@:LDP man-pages:3.25:2009/12/05:nexttowardl:3:nextafter:3:
+@:LDP man-pages:3.25:2010/06/10:nftw:3:ftw:3:
+○:LDP man-pages:3.25:2001/05/11:nl_langinfo:3:2001/07/15::KY4N-UCD@asahi-net.or.jp:UCHIDA Norihiro:
+@:LDP man-pages:3.25:2007/07/26:nrand48:3:drand48:3:
+@:LDP man-pages:3.25:2007/07/26:nrand48_r:3:drand48_r:3:
+@:LDP man-pages:3.25:2009/01/15:ntohl:3:byteorder:3:
+@:LDP man-pages:3.25:2009/01/15:ntohs:3:byteorder:3:
+○:LDP man-pages:3.25:2008/07/12:offsetof:3:2006/07/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/12/05:on_exit:3:2009/01/15:o:amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2010/06/10:open_memstream:3:fmemopen:3:
+@:LDP man-pages:3.25:2010/06/10:open_wmemstream:3:fmemopen:3:
+☆:LDP man-pages:3.24=>3.25:2010/06/20:opendir:3:2007/10/14:o:amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/11/12:openlog:3:syslog:3:
+☆:LDP man-pages:3.24=>3.25:2010/06/13:openpty:3:2006/02/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2010/02/03:optarg:3:getopt:3:
+@:LDP man-pages:3.25:2010/02/03:opterr:3:getopt:3:
+@:LDP man-pages:3.25:2010/02/03:optind:3:getopt:3:
+@:LDP man-pages:3.25:2010/02/03:optopt:3:getopt:3:
+@:LDP man-pages:3.25:2003/04/04:passwd2des:3:xcrypt:3:
+@:LDP man-pages:3.25:1993/04/04:pathconf:3:fpathconf:3:
+@:LDP man-pages:3.25:2010/02/03:pclose:3:popen:3:
+○:LDP man-pages:3.25:2007/07/26:perror:3:2005/03/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/07/17:pmap_getmaps:3:rpc:3:
+@:LDP man-pages:3.25:2008/07/17:pmap_getport:3:rpc:3:
+@:LDP man-pages:3.25:2008/07/17:pmap_rmtcall:3:rpc:3:
+@:LDP man-pages:3.25:2008/07/17:pmap_set:3:rpc:3:
+@:LDP man-pages:3.25:2008/07/17:pmap_unset:3:rpc:3:
+○:LDP man-pages:3.25:2010/02/03:popen:3:2008/11/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2009/09/30:posix_fallocate:3:2006/08/19::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2009/03/30:posix_memalign:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2007/07/26:posix_openpt:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2008/08/10:pow:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2004/10/05:pow10:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.25:2004/10/05:pow10f:3:pow10:3:
+@:LDP man-pages:3.25:2004/10/05:pow10l:3:pow10:3:
+@:LDP man-pages:3.25:2008/08/10:powf:3:pow:3:
+@:LDP man-pages:3.25:2008/08/10:powl:3:pow:3:
+○:LDP man-pages:3.25:2008/12/19:printf:3:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2007/07/26:profil:3:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2006/04/29:program_invocation_name:3:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2006/04/29:program_invocation_short_name:3:program_invocation_name:3:
+○:LDP man-pages:3.25:2008/08/21:psignal:3:1997/12/26::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
+※:LDP man-pages:3.25:2008/11/11:pthread_attr_destroy:3:pthread_attr_init:3:
+※:LDP man-pages:3.25:2009/02/01:pthread_attr_getaffinity_np:3:pthread_attr_setaffinity_np:3:
+※:LDP man-pages:3.25:2010/02/03:pthread_attr_getdetachstate:3:pthread_attr_setdetachstate:3:
+※:LDP man-pages:3.25:2008/10/24:pthread_attr_getguardsize:3:pthread_attr_setguardsize:3:
+※:LDP man-pages:3.25:2008/11/10:pthread_attr_getinheritsched:3:pthread_attr_setinheritsched:3:
+※:LDP man-pages:3.25:2010/02/03:pthread_attr_getschedparam:3:pthread_attr_setschedparam:3:
+※:LDP man-pages:3.25:2010/02/03:pthread_attr_getschedpolicy:3:pthread_attr_setschedpolicy:3:
+※:LDP man-pages:3.25:2008/10/24:pthread_attr_getscope:3:pthread_attr_setscope:3:
+※:LDP man-pages:3.25:2008/10/24:pthread_attr_getstack:3:pthread_attr_setstack:3:
+※:LDP man-pages:3.25:2008/10/24:pthread_attr_getstackaddr:3:pthread_attr_setstackaddr:3:
+※:LDP man-pages:3.25:2008/11/05:pthread_attr_getstacksize:3:pthread_attr_setstacksize:3:
+×:LDP man-pages:3.25:2008/11/11:pthread_attr_init:3:::::
+×:LDP man-pages:3.25:2009/02/01:pthread_attr_setaffinity_np:3:::::
+×:LDP man-pages:3.25:2010/02/03:pthread_attr_setdetachstate:3:::::
+×:LDP man-pages:3.25:2008/10/24:pthread_attr_setguardsize:3:::::
+×:LDP man-pages:3.25:2008/11/10:pthread_attr_setinheritsched:3:::::
+×:LDP man-pages:3.25:2010/02/03:pthread_attr_setschedparam:3:::::
+×:LDP man-pages:3.25:2010/02/03:pthread_attr_setschedpolicy:3:::::
+×:LDP man-pages:3.25:2008/10/24:pthread_attr_setscope:3:::::
+×:LDP man-pages:3.25:2008/10/24:pthread_attr_setstack:3:::::
+×:LDP man-pages:3.25:2008/10/24:pthread_attr_setstackaddr:3:::::
+×:LDP man-pages:3.25:2008/11/05:pthread_attr_setstacksize:3:::::
+×:LDP man-pages:3.25:2008/11/17:pthread_cancel:3:::::
+※:LDP man-pages:3.25:2008/11/24:pthread_cleanup_pop:3:pthread_cleanup_push:3:
+※:LDP man-pages:3.25:2008/12/04:pthread_cleanup_pop_restore_np:3:pthread_cleanup_push_defer_np:3:
+×:LDP man-pages:3.25:2008/11/24:pthread_cleanup_push:3:::::
+×:LDP man-pages:3.25:2008/12/04:pthread_cleanup_push_defer_np:3:::::
+×:LDP man-pages:3.25:2008/11/11:pthread_create:3:::::
+×:LDP man-pages:3.25:2008/11/27:pthread_detach:3:::::
+×:LDP man-pages:3.25:2009/03/30:pthread_equal:3:::::
+×:LDP man-pages:3.25:2009/03/30:pthread_exit:3:::::
+※:LDP man-pages:3.25:2008/11/27:pthread_getaffinity_np:3:pthread_setaffinity_np:3:
+×:LDP man-pages:3.25:2008/11/11:pthread_getattr_np:3:::::
+※:LDP man-pages:3.25:2009/04/10:pthread_getconcurrency:3:pthread_setconcurrency:3:
+×:LDP man-pages:3.25:2009/02/08:pthread_getcpuclockid:3:::::
+※:LDP man-pages:3.25:2008/11/17:pthread_getschedparam:3:pthread_setschedparam:3:
+×:LDP man-pages:3.25:2008/11/27:pthread_join:3:::::
+×:LDP man-pages:3.25:2009/01/28:pthread_kill:3:::::
+×:LDP man-pages:3.25:2009/01/28:pthread_kill_other_threads_np:3:::::
+×:LDP man-pages:3.25:2008/10/24:pthread_self:3:::::
+×:LDP man-pages:3.25:2008/11/27:pthread_setaffinity_np:3:::::
+×:LDP man-pages:3.25:2008/11/24:pthread_setcancelstate:3:::::
+※:LDP man-pages:3.25:2008/11/24:pthread_setcanceltype:3:pthread_setcancelstate:3:
+×:LDP man-pages:3.25:2009/04/10:pthread_setconcurrency:3:::::
+×:LDP man-pages:3.25:2008/11/17:pthread_setschedparam:3:::::
+×:LDP man-pages:3.25:2008/11/06:pthread_setschedprio:3:::::
+×:LDP man-pages:3.25:2009/01/25:pthread_sigmask:3:::::
+×:LDP man-pages:3.25:2008/11/17:pthread_testcancel:3:::::
+※:LDP man-pages:3.25:2008/11/11:pthread_timedjoin_np:3:pthread_tryjoin_np:3:
+×:LDP man-pages:3.25:2008/11/11:pthread_tryjoin_np:3:::::
+×:LDP man-pages:3.25:2009/04/10:pthread_yield:3:::::
+○:LDP man-pages:3.25:2008/09/03:ptsname:3:2005/03/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/09/03:ptsname_r:3:ptsname:3:
+@:LDP man-pages:3.25:1993/04/04:putc:3:puts:3:
+@:LDP man-pages:3.25:2008/08/29:putc_unlocked:3:unlocked_stdio:3:
+@:LDP man-pages:3.25:1993/04/04:putchar:3:puts:3:
+@:LDP man-pages:3.25:2008/08/29:putchar_unlocked:3:unlocked_stdio:3:
+○:LDP man-pages:3.25:2007/07/26:putenv:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.25:2003/09/09:putgrent:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2007/07/26:putpwent:3:1997/12/18::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
+○:LDP man-pages:3.25:1993/04/04:puts:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.25:2010/02/25:putspent:3:getspnam:3:
+@:LDP man-pages:3.25:2008/06/29:pututline:3:getutent:3:
+@:LDP man-pages:3.25:2008/06/29:pututxline:3:getutent:3:
+@:LDP man-pages:3.25:2007/12/20:putw:3:getw:3:
+@:LDP man-pages:3.25:1999/07/25:putwc:3:fputwc:3:
+@:LDP man-pages:3.25:2008/08/29:putwc_unlocked:3:unlocked_stdio:3:
+○:LDP man-pages:3.25:1999/07/25:putwchar:3:2001/11/09::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.25:2008/08/29:putwchar_unlocked:3:unlocked_stdio:3:
+○:LDP man-pages:3.25:2007/07/26:qecvt:3:2002/09/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2007/07/26:qecvt_r:3:ecvt_r:3:
+@:LDP man-pages:3.25:2007/07/26:qfcvt:3:qecvt:3:
+@:LDP man-pages:3.25:2007/07/26:qfcvt_r:3:ecvt_r:3:
+@:LDP man-pages:3.25:2007/07/26:qgcvt:3:qecvt:3:
+○:LDP man-pages:3.25:2009/09/15:qsort:3:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2007/12/28:queue:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2008/10/17:raise:3:1997/12/25::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
+○:LDP man-pages:3.25:2008/08/29:rand:3:2005/03/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/08/29:rand_r:3:rand:3:
+○:LDP man-pages:3.25:2009/02/03:random:3:1997/01/21::tyoshino@eng.toyo.ac.jp:YOSHINO Takashi:
+○:LDP man-pages:3.25:2008/03/07:random_r:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2009/12/04:rawmemchr:3:memchr:3:
+○:LDP man-pages:3.25:2007/12/28:rcmd:3:1999/03/01::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.25:1995/07/14:re_comp:3:1997/12/18::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
+@:LDP man-pages:3.25:1995/07/14:re_exec:3:re_comp:3:
+○:LDP man-pages:3.25:2009/07/04:readdir:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2009/07/04:readdir_r:3:readdir:3:
+@:LDP man-pages:3.25:2009/01/13:realloc:3:malloc:3:
+○:LDP man-pages:3.25:2009/02/23:realpath:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:1994/08/18:recno:3:1999/08/19::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+@:LDP man-pages:3.25:2008/05/29:regcomp:3:regex:3:
+@:LDP man-pages:3.25:2008/05/29:regerror:3:regex:3:
+○:LDP man-pages:3.25:2008/05/29:regex:3:2005/03/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/05/29:regexec:3:regex:3:
+@:LDP man-pages:3.25:2008/05/29:regfree:3:regex:3:
+@:LDP man-pages:3.25:2008/07/17:registerrpc:3:rpc:3:
+○:LDP man-pages:3.25:2009/02/04:remainder:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2009/02/04:remainderf:3:remainder:3:
+@:LDP man-pages:3.25:2009/02/04:remainderl:3:remainder:3:
+○:LDP man-pages:3.25:2008/12/03:remove:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.25:2008/07/11:remque:3:insque:3:
+○:LDP man-pages:3.25:2008/08/11:remquo:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/08/11:remquof:3:remquo:3:
+@:LDP man-pages:3.25:2008/08/11:remquol:3:remquo:3:
+@:LDP man-pages:3.25:2010/06/17:res_init:3:resolver:3:
+@:LDP man-pages:3.25:2010/06/17:res_mkquery:3:resolver:3:
+@:LDP man-pages:3.25:2010/06/17:res_query:3:resolver:3:
+@:LDP man-pages:3.25:2010/06/17:res_querydomain:3:resolver:3:
+@:LDP man-pages:3.25:2010/06/17:res_search:3:resolver:3:
+@:LDP man-pages:3.25:2010/06/17:res_send:3:resolver:3:
+☆:LDP man-pages:3.24=>3.25:2010/06/17:resolver:3:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.25:1993/11/29:rewind:3:fseek:3:
+○:LDP man-pages:3.25:1995/06/11:rewinddir:3:1997/12/24::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
+○:LDP man-pages:3.25:2007/12/28:rexec:3:2005/12/28::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2009/03/15:rindex:3:index:3:
+○:LDP man-pages:3.25:2008/08/05:rint:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/08/05:rintf:3:rint:3:
+@:LDP man-pages:3.25:2008/08/05:rintl:3:rint:3:
+○:LDP man-pages:3.25:2008/08/11:round:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/08/11:roundf:3:round:3:
+@:LDP man-pages:3.25:2008/08/11:roundl:3:round:3:
+○:LDP man-pages:3.25:2008/07/17:rpc:3:2001/11/09::ysato@h4.dion.ne.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2007/07/26:rpmatch:3:2006/07/31::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2007/12/28:rresvport:3:rcmd:3:
+○:LDP man-pages:3.25:2010/02/25:rtime:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2010/01/11:rtnetlink:3:1999/08/20::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+@:LDP man-pages:3.25:2007/12/28:ruserok:3:rcmd:3:
+○:LDP man-pages:3.25:2009/03/15:scalb:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2009/03/15:scalbf:3:scalb:3:
+@:LDP man-pages:3.25:2009/03/15:scalbl:3:scalb:3:
+×:LDP man-pages:3.25:2008/08/11:scalbln:3:::::
+※:LDP man-pages:3.25:2008/08/11:scalblnf:3:scalbln:3:
+※:LDP man-pages:3.25:2008/08/11:scalblnl:3:scalbln:3:
+※:LDP man-pages:3.25:2008/08/11:scalbn:3:scalbln:3:
+※:LDP man-pages:3.25:2008/08/11:scalbnf:3:scalbln:3:
+※:LDP man-pages:3.25:2008/08/11:scalbnl:3:scalbln:3:
+○:LDP man-pages:3.25:2009/02/10:scandir:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/07/12:scanf:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2009/12/08:sched_getcpu:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2007/07/26:seed48:3:drand48:3:
+@:LDP man-pages:3.25:2007/07/26:seed48_r:3:drand48_r:3:
+○:LDP man-pages:3.25:2009/03/11:seekdir:3:1997/12/24::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
+○:LDP man-pages:3.25:2006/03/25:sem_close:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2006/03/25:sem_destroy:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2006/03/25:sem_getvalue:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/07/27:sem_init:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2009/02/20:sem_open:3:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2009/03/30:sem_post:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2010/02/25:sem_timedwait:3:sem_wait:3:
+@:LDP man-pages:3.25:2010/02/25:sem_trywait:3:sem_wait:3:
+○:LDP man-pages:3.25:2006/03/25:sem_unlink:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2010/02/25:sem_wait:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2003/09/09:setaliasent:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2008/06/26:setbuf:3:2001/07/14::ysato@h4.dion.ne.jp:Yuichi SATO:
+@:LDP man-pages:3.25:2008/06/26:setbuffer:3:setbuf:3:
+○:LDP man-pages:3.25:2009/09/20:setenv:3:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.25:2002/02/28:setfsent:3:getfsent:3:
+@:LDP man-pages:3.25:2009/03/30:setgrent:3:getgrent:3:
+@:LDP man-pages:3.25:2009/12/03:sethostent:3:gethostbyname:3:
+@:LDP man-pages:3.25:2009/01/13:sethostid:3:gethostid:3:
+○:LDP man-pages:3.25:2009/06/26:setjmp:3:2009/03/05::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.25:2003/04/04:setkey:3:encrypt:3:
+@:LDP man-pages:3.25:2003/04/04:setkey_r:3:encrypt:3:
+@:LDP man-pages:3.25:2008/06/26:setlinebuf:3:setbuf:3:
+○:LDP man-pages:3.25:2008/12/05:setlocale:3:2002/10/12::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.25:2001/10/05:setlogmask:3:2001/11/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2009/09/15:setmntent:3:getmntent:3:
+@:LDP man-pages:3.25:2008/08/19:setnetent:3:getnetent:3:
+○:LDP man-pages:3.25:2007/07/26:setnetgrent:3:2005/03/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/08/19:setprotoent:3:getprotoent:3:
+@:LDP man-pages:3.25:2009/03/30:setpwent:3:getpwent:3:
+@:LDP man-pages:3.25:2008/08/19:setrpcent:3:getrpcent:3:
+@:LDP man-pages:3.25:2008/08/19:setservent:3:getservent:3:
+@:LDP man-pages:3.25:2010/02/25:setspent:3:getspnam:3:
+@:LDP man-pages:3.25:2009/02/03:setstate:3:random:3:
+@:LDP man-pages:3.25:2008/03/07:setstate_r:3:random_r:3:
+@:LDP man-pages:3.25:2002/07/18:setttyent:3:getttyent:3:
+@:LDP man-pages:3.25:2007/07/26:setusershell:3:getusershell:3:
+@:LDP man-pages:3.25:2008/06/29:setutent:3:getutent:3:
+@:LDP man-pages:3.25:2008/06/29:setutxent:3:getutent:3:
+@:LDP man-pages:3.25:2008/06/26:setvbuf:3:setbuf:3:
+@:LDP man-pages:3.25:2010/02/25:sgetspent:3:getspnam:3:
+@:LDP man-pages:3.25:2010/02/25:sgetspent_r:3:getspnam:3:
+○:LDP man-pages:3.25:2009/02/25:shm_open:3:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2009/02/25:shm_unlink:3:shm_open:3:
+@:LDP man-pages:3.25:2008/09/01:sigaddset:3:sigsetops:3:
+@:LDP man-pages:3.25:2008/09/01:sigandset:3:sigsetops:3:
+@:LDP man-pages:3.25:2007/07/26:sigblock:3:sigvec:3:
+@:LDP man-pages:3.25:2008/09/01:sigdelset:3:sigsetops:3:
+@:LDP man-pages:3.25:2008/09/01:sigemptyset:3:sigsetops:3:
+@:LDP man-pages:3.25:2008/09/01:sigfillset:3:sigsetops:3:
+@:LDP man-pages:3.25:2007/07/26:siggetmask:3:sigvec:3:
+@:LDP man-pages:3.25:2009/03/15:sighold:3:sigset:3:
+@:LDP man-pages:3.25:2009/03/15:sigignore:3:sigset:3:
+○:LDP man-pages:3.25:2009/03/15:siginterrupt:3:1998/05/24::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+@:LDP man-pages:3.25:2008/09/01:sigisemptyset:3:sigsetops:3:
+@:LDP man-pages:3.25:2008/09/01:sigismember:3:sigsetops:3:
+@:LDP man-pages:3.25:2009/01/13:siglongjmp:3:longjmp:3:
+@:LDP man-pages:3.25:2007/07/26:sigmask:3:sigvec:3:
+○:LDP man-pages:3.25:2008/08/05:signbit:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/08/05:signgam:3:lgamma:3:
+○:LDP man-pages:3.25:2009/02/04:significand:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.25:2009/02/04:significandf:3:significand:3:
+@:LDP man-pages:3.25:2009/02/04:significandl:3:significand:3:
+@:LDP man-pages:3.25:2008/09/01:sigorset:3:sigsetops:3:
+○:LDP man-pages:3.25:2005/12/01:sigpause:3:2005/12/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2009/03/15:sigrelse:3:sigset:3:
+○:LDP man-pages:3.25:2009/03/15:sigset:3:2005/12/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2009/06/26:sigsetjmp:3:setjmp:3:
+@:LDP man-pages:3.25:2007/07/26:sigsetmask:3:sigvec:3:
+○:LDP man-pages:3.25:2008/09/01:sigsetops:3:2005/12/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2007/07/26:sigvec:3:2005/12/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2009/02/10:sigwait:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2009/02/04:sin:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/08/11:sincos:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/08/11:sincosf:3:sincos:3:
+@:LDP man-pages:3.25:2008/08/11:sincosl:3:sincos:3:
+@:LDP man-pages:3.25:2009/02/04:sinf:3:sin:3:
+○:LDP man-pages:3.25:2008/08/05:sinh:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/08/05:sinhf:3:sinh:3:
+@:LDP man-pages:3.25:2008/08/05:sinhl:3:sinh:3:
+@:LDP man-pages:3.25:2009/02/04:sinl:3:sin:3:
+○:LDP man-pages:3.25:2010/02/03:sleep:3:1997/01/21::tyoshino@eng.toyo.ac.jp:YOSHINO Takashi:
+@:LDP man-pages:3.25:2008/12/19:snprintf:3:printf:3:
+○:LDP man-pages:3.25:2008/12/03:sockatmark:3:2006/08/19::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.25:2008/12/19:sprintf:3:printf:3:
+○:LDP man-pages:3.25:2008/08/05:sqrt:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/08/05:sqrtf:3:sqrt:3:
+@:LDP man-pages:3.25:2008/08/05:sqrtl:3:sqrt:3:
+@:LDP man-pages:3.25:2008/08/29:srand:3:rand:3:
+@:LDP man-pages:3.25:2007/07/26:srand48:3:drand48:3:
+@:LDP man-pages:3.25:2007/07/26:srand48_r:3:drand48_r:3:
+@:LDP man-pages:3.25:2009/02/03:srandom:3:random:3:
+@:LDP man-pages:3.25:2008/03/07:srandom_r:3:random_r:3:
+@:LDP man-pages:3.25:2008/07/12:sscanf:3:scanf:3:
+@:LDP man-pages:3.25:2007/07/26:ssignal:3:gsignal:3:
+○:LDP man-pages:3.24:2003/08/22:statvfs:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2001/10/14:stdarg:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.25:2008/07/14:stderr:3:stdin:3:
+○:LDP man-pages:3.25:2008/07/14:stdin:3:2005/09/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2001/12/26:stdio:3:2004/02/06::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2001/12/16:stdio_ext:3:2002/08/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/07/14:stdout:3:stdin:3:
+○:LDP man-pages:3.25:2009/02/04:stpcpy:3:1997/12/26::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
+○:LDP man-pages:3.25:1999/07/25:stpncpy:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+○:LDP man-pages:3.25:1993/04/11:strcasecmp:3:1997/12/25::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
+@:LDP man-pages:3.25:2005/04/05:strcasestr:3:strstr:3:
+○:LDP man-pages:3.25:2008/06/13:strcat:3:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2008/08/11:strchr:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/08/11:strchrnul:3:strchr:3:
+○:LDP man-pages:3.25:2009/04/21:strcmp:3:2001/10/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:1993/04/12:strcoll:3:2007/06/01::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2009/12/04:strcpy:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.25:1993/04/12:strcspn:3:strspn:3:
+○:LDP man-pages:3.25:2007/07/26:strdup:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.25:2007/07/26:strdupa:3:strdup:3:
+○:LDP man-pages:3.25:2009/03/30:strerror:3:2005/12/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2009/03/30:strerror_r:3:strerror:3:
+○:LDP man-pages:3.25:2000/12/05:strfmon:3:2001/02/14::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.25:1993/04/12:strfry:3:1998/05/25::motoki@hal.t.u-tokyo.ac.jp:Akihiro Motoki:
+○:LDP man-pages:3.25:2010/01/17:strftime:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2010/02/25:string:3:1997/01/20::yoshino@civil.jcn.nihon-u.ac.jp:YOSHINO Takashi:
+○:LDP man-pages:3.25:1993/04/12:strlen:3:1997/01/20::tyoshino@eng.toyo.ac.jp:YOSHINO Takashi:
+@:LDP man-pages:3.25:1993/04/11:strncasecmp:3:strcasecmp:3:
+@:LDP man-pages:3.25:2008/06/13:strncat:3:strcat:3:
+@:LDP man-pages:3.25:2009/04/21:strncmp:3:strcmp:3:
+@:LDP man-pages:3.25:2009/12/04:strncpy:3:strcpy:3:
+@:LDP man-pages:3.25:2007/07/26:strndup:3:strdup:3:
+@:LDP man-pages:3.25:2007/07/26:strndupa:3:strdup:3:
+○:LDP man-pages:3.25:1999/07/25:strnlen:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+○:LDP man-pages:3.25:1993/04/12:strpbrk:3:1999/12/25::argrath@yo.rim.or.jp:Kentaro Shirakata:
+○:LDP man-pages:3.25:2009/12/05:strptime:3:2002/01/14::ysato@h4.dion.ne.jp:Yuichi SATO:
+@:LDP man-pages:3.25:2008/08/11:strrchr:3:strchr:3:
+○:LDP man-pages:3.25:2009/01/16:strsep:3:2009/03/05::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.25:1999/02/08:strsignal:3:1999/12/25::argrath@yo.rim.or.jp:Kentaro Shirakata:
+○:LDP man-pages:3.25:1993/04/12:strspn:3:1997/12/16::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
+○:LDP man-pages:3.25:2005/04/05:strstr:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.25:2007/07/26:strtod:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2007/07/26:strtof:3:strtod:3:
+○:LDP man-pages:3.25:2003/11/28:strtoimax:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2008/10/29:strtok:3:2005/11/19:o:amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/10/29:strtok_r:3:strtok:3:
+○:LDP man-pages:3.25:2007/07/26:strtol:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2007/07/26:strtold:3:strtod:3:
+@:LDP man-pages:3.25:2007/07/26:strtoll:3:strtol:3:
+@:LDP man-pages:3.25:2007/07/26:strtoq:3:strtol:3:
+○:LDP man-pages:3.25:2007/07/26:strtoul:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2007/07/26:strtoull:3:strtoul:3:
+@:LDP man-pages:3.25:2003/11/28:strtoumax:3:strtoimax:3:
+@:LDP man-pages:3.25:2007/07/26:strtouq:3:strtoul:3:
+○:LDP man-pages:3.25:2001/12/19:strverscmp:3:2002/09/22::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:1993/04/12:strxfrm:3:1999/03/24::ss236rx@ymg.urban.ne.jp:Shouichi Saito:
+@:LDP man-pages:3.25:2008/07/17:svc_destroy:3:rpc:3:
+@:LDP man-pages:3.25:2008/07/17:svc_freeargs:3:rpc:3:
+@:LDP man-pages:3.25:2008/07/17:svc_getargs:3:rpc:3:
+@:LDP man-pages:3.25:2008/07/17:svc_getcaller:3:rpc:3:
+@:LDP man-pages:3.25:2008/07/17:svc_getreq:3:rpc:3:
+@:LDP man-pages:3.25:2008/07/17:svc_getreqset:3:rpc:3:
+@:LDP man-pages:3.25:2008/07/17:svc_register:3:rpc:3:
+@:LDP man-pages:3.25:2008/07/17:svc_run:3:rpc:3:
+@:LDP man-pages:3.25:2008/07/17:svc_sendreply:3:rpc:3:
+@:LDP man-pages:3.25:2008/07/17:svc_unregister:3:rpc:3:
+@:LDP man-pages:3.25:2008/07/17:svcerr_auth:3:rpc:3:
+@:LDP man-pages:3.25:2008/07/17:svcerr_decode:3:rpc:3:
+@:LDP man-pages:3.25:2008/07/17:svcerr_noproc:3:rpc:3:
+@:LDP man-pages:3.25:2008/07/17:svcerr_noprog:3:rpc:3:
+@:LDP man-pages:3.25:2008/07/17:svcerr_progvers:3:rpc:3:
+@:LDP man-pages:3.25:2008/07/17:svcerr_systemerr:3:rpc:3:
+@:LDP man-pages:3.25:2008/07/17:svcerr_weakauth:3:rpc:3:
+@:LDP man-pages:3.25:2008/07/17:svcfd_create:3:rpc:3:
+@:LDP man-pages:3.25:2008/07/17:svcraw_create:3:rpc:3:
+@:LDP man-pages:3.25:2008/07/17:svctcp_create:3:rpc:3:
+@:LDP man-pages:3.25:2008/07/17:svcudp_bufcreate:3:rpc:3:
+@:LDP man-pages:3.25:2008/07/17:svcudp_create:3:rpc:3:
+○:LDP man-pages:3.25:2001/12/15:swab:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.25:2009/03/31:swapcontext:3:makecontext:3:
+@:LDP man-pages:3.25:2007/07/26:swprintf:3:wprintf:3:
+@:LDP man-pages:3.25:2007/07/26:sys_errlist:3:perror:3:
+@:LDP man-pages:3.25:2007/07/26:sys_nerr:3:perror:3:
+☆:LDP man-pages:3.24=>3.25:2007/12/12:sysconf:3:2005/03/31::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/11/12:syslog:3:2008/07/24:o:argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.25:2004/12/20:system:3:2005/03/12:o:amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2007/05/04:sysv_signal:3:2007/06/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/08/05:tan:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/08/05:tanf:3:tan:3:
+○:LDP man-pages:3.25:2008/08/05:tanh:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/08/05:tanhf:3:tanh:3:
+@:LDP man-pages:3.25:2008/08/05:tanhl:3:tanh:3:
+@:LDP man-pages:3.25:2008/08/05:tanl:3:tan:3:
+@:LDP man-pages:3.25:2010/06/20:tcdrain:3:termios:3:
+@:LDP man-pages:3.25:2010/06/20:tcflow:3:termios:3:
+@:LDP man-pages:3.25:2010/06/20:tcflush:3:termios:3:
+@:LDP man-pages:3.25:2010/06/20:tcgetattr:3:termios:3:
+○:LDP man-pages:3.25:2003/01/28:tcgetpgrp:3:2003/08/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/06/14:tcgetsid:3:2003/08/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2010/06/20:tcsendbreak:3:termios:3:
+@:LDP man-pages:3.25:2010/06/20:tcsetattr:3:termios:3:
+@:LDP man-pages:3.25:2003/01/28:tcsetpgrp:3:tcgetpgrp:3:
+@:LDP man-pages:3.25:2008/09/23:tdelete:3:tsearch:3:
+@:LDP man-pages:3.25:2008/09/23:tdestroy:3:tsearch:3:
+○:LDP man-pages:3.25:2009/03/11:telldir:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2007/07/26:tempnam:3:2006/07/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.24=>3.25:2010/06/20:termios:3:2007/05/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/09/23:tfind:3:tsearch:3:
+○:LDP man-pages:3.25:2008/08/11:tgamma:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/08/11:tgammaf:3:tgamma:3:
+@:LDP man-pages:3.25:2008/08/11:tgammal:3:tgamma:3:
+○:LDP man-pages:3.25:2007/07/26:timegm:3:2002/01/14::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+@:LDP man-pages:3.25:2007/07/26:timelocal:3:timegm:3:
+○:LDP man-pages:3.25:2010/02/25:timeradd:3:2007/10/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2010/02/25:timerclear:3:timeradd:3:
+@:LDP man-pages:3.25:2010/02/25:timercmp:3:timeradd:3:
+@:LDP man-pages:3.25:2010/02/25:timerisset:3:timeradd:3:
+@:LDP man-pages:3.25:2010/02/25:timersub:3:timeradd:3:
+@:LDP man-pages:3.25:2010/02/25:timezone:3:tzset:3:
+○:LDP man-pages:3.25:2008/07/14:tmpfile:3:2001/12/14:o:ysato@h4.dion.ne.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2003/11/15:tmpnam:3:2006/07/26:o:amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2003/11/15:tmpnam_r:3:tmpnam:3:
+○:LDP man-pages:3.25:2009/03/15:toascii:3:1997/12/16::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka:
+@:LDP man-pages:3.25:1993/04/04:tolower:3:toupper:3:
+○:LDP man-pages:3.25:1993/04/04:toupper:3:1997/04/29::rui@linux.or.jp:Ueyama Rui:
+○:LDP man-pages:3.25:1999/07/25:towctrans:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.25:1999/07/25:towlower:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.25:1999/07/25:towupper:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.25:2008/08/11:trunc:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/08/11:truncf:3:trunc:3:
+@:LDP man-pages:3.25:2008/08/11:truncl:3:trunc:3:
+○:LDP man-pages:3.25:2008/09/23:tsearch:3:2002/02/14::ysato@h4.dion.ne.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2008/07/14:ttyname:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.25:2008/07/14:ttyname_r:3:ttyname:3:
+○:LDP man-pages:3.25:2007/11/26:ttyslot:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.25:2008/09/23:twalk:3:tsearch:3:
+@:LDP man-pages:3.25:2010/02/25:tzname:3:tzset:3:
+○:LDP man-pages:3.25:2010/02/25:tzset:3:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/08/06:ualarm:3:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2010/02/25:ulckpwdf:3:getspnam:3:
+○:LDP man-pages:3.25:2008/08/06:ulimit:3:1998/12/06::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.25:2010/02/10:undocumented:3:2005/02/21::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/08/06:ungetc:3:gets:3:
+○:LDP man-pages:3.25:1999/09/19:ungetwc:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+○:LDP man-pages:3.25:2008/08/29:unlocked_stdio:3:2001/11/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/06/14:unlockpt:3:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2009/09/20:unsetenv:3:setenv:3:
+○:LDP man-pages:3.25:2008/07/02:updwtmp:3:2008/10/08::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.25:2008/07/02:updwtmpx:3:updwtmp:3:
+○:LDP man-pages:3.25:2007/07/26:usleep:3:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/06/29:utmpname:3:getutent:3:
+@:LDP man-pages:3.25:2008/06/29:utmpxname:3:getutent:3:
+@:LDP man-pages:3.25:2001/10/14:va_arg:3:stdarg:3:
+@:LDP man-pages:3.25:2001/10/14:va_copy:3:stdarg:3:
+@:LDP man-pages:3.25:2001/10/14:va_end:3:stdarg:3:
+@:LDP man-pages:3.25:2001/10/14:va_start:3:stdarg:3:
+@:LDP man-pages:3.25:2009/03/30:valloc:3:posix_memalign:3:
+@:LDP man-pages:3.25:2001/12/18:vasprintf:3:asprintf:3:
+@:LDP man-pages:3.25:2008/06/14:vdprintf:3:dprintf:3:
+@:LDP man-pages:3.25:2007/12/28:verr:3:err:3:
+@:LDP man-pages:3.25:2007/12/28:verrx:3:err:3:
+@:LDP man-pages:3.25:2009/02/10:versionsort:3:scandir:3:
+@:LDP man-pages:3.25:2008/12/19:vfprintf:3:printf:3:
+@:LDP man-pages:3.25:2008/07/12:vfscanf:3:scanf:3:
+@:LDP man-pages:3.25:2007/07/26:vfwprintf:3:wprintf:3:
+@:LDP man-pages:3.25:2008/12/19:vprintf:3:printf:3:
+@:LDP man-pages:3.25:2008/07/12:vscanf:3:scanf:3:
+@:LDP man-pages:3.25:2008/12/19:vsnprintf:3:printf:3:
+@:LDP man-pages:3.25:2008/12/19:vsprintf:3:printf:3:
+@:LDP man-pages:3.25:2008/07/12:vsscanf:3:scanf:3:
+@:LDP man-pages:3.25:2007/07/26:vswprintf:3:wprintf:3:
+@:LDP man-pages:3.25:2008/11/12:vsyslog:3:syslog:3:
+@:LDP man-pages:3.25:2007/12/28:vwarn:3:err:3:
+@:LDP man-pages:3.25:2007/12/28:vwarnx:3:err:3:
+@:LDP man-pages:3.25:2007/07/26:vwprintf:3:wprintf:3:
+@:LDP man-pages:3.25:2007/12/28:warn:3:err:3:
+@:LDP man-pages:3.25:2007/12/28:warnx:3:err:3:
+○:LDP man-pages:3.25:1999/07/25:wcpcpy:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.25:2003/11/01:wcpncpy:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.25:1999/07/25:wcrtomb:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.25:2009/02/04:wcscasecmp:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.25:1999/07/25:wcscat:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.25:1999/07/25:wcschr:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.25:1999/07/25:wcscmp:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.25:1999/07/25:wcscpy:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.25:1999/07/25:wcscspn:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.25:2009/02/04:wcsdup:3:2004/06/13::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.25:1999/07/25:wcslen:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.25:2009/02/04:wcsncasecmp:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.25:1999/07/25:wcsncat:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.25:1999/07/25:wcsncmp:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.25:1999/07/25:wcsncpy:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.25:2007/07/26:wcsnlen:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.25:2007/07/26:wcsnrtombs:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.25:1999/07/25:wcspbrk:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.25:1999/07/25:wcsrchr:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.25:1999/07/25:wcsrtombs:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.25:1999/07/25:wcsspn:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.25:1999/07/25:wcsstr:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.25:2003/11/01:wcstoimax:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.25:1999/07/25:wcstok:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.25:1999/07/25:wcstombs:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+@:LDP man-pages:3.25:2003/11/01:wcstoumax:3:wcstoimax:3:
+○:LDP man-pages:3.25:2007/07/26:wcswidth:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.25:2009/02/04:wctob:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.25:1999/07/25:wctomb:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+○:LDP man-pages:3.25:1999/07/25:wctrans:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.25:1999/07/25:wctype:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.25:1999/07/25:wcwidth:3:2002/08/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:1999/07/25:wmemchr:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.25:1999/07/25:wmemcmp:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.25:1999/07/25:wmemcpy:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.25:1999/07/25:wmemmove:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+@:LDP man-pages:3.25:2008/08/12:wmempcpy:3:mempcpy:3:
+○:LDP man-pages:3.25:1999/07/25:wmemset:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi:
+○:LDP man-pages:3.25:2008/07/14:wordexp:3:2004/09/29::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.25:2008/07/14:wordfree:3:wordexp:3:
+○:LDP man-pages:3.25:2007/07/26:wprintf:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+○:LDP man-pages:3.25:2003/04/04:xcrypt:3:2004/10/16::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.25:2003/04/04:xdecrypt:3:xcrypt:3:
+○:LDP man-pages:3.25:2007/12/30:xdr:3:2000/01/14::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+@:LDP man-pages:3.25:2008/07/17:xdr_accepted_reply:3:rpc:3:
+@:LDP man-pages:3.25:2007/12/30:xdr_array:3:xdr:3:
+@:LDP man-pages:3.25:2008/07/17:xdr_authunix_parms:3:rpc:3:
+@:LDP man-pages:3.25:2007/12/30:xdr_bool:3:xdr:3:
+@:LDP man-pages:3.25:2007/12/30:xdr_bytes:3:xdr:3:
+@:LDP man-pages:3.25:2008/07/17:xdr_callhdr:3:rpc:3:
+@:LDP man-pages:3.25:2008/07/17:xdr_callmsg:3:rpc:3:
+@:LDP man-pages:3.25:2007/12/30:xdr_char:3:xdr:3:
+@:LDP man-pages:3.25:2007/12/30:xdr_destroy:3:xdr:3:
+@:LDP man-pages:3.25:2007/12/30:xdr_double:3:xdr:3:
+@:LDP man-pages:3.25:2007/12/30:xdr_enum:3:xdr:3:
+@:LDP man-pages:3.25:2007/12/30:xdr_float:3:xdr:3:
+@:LDP man-pages:3.25:2007/12/30:xdr_free:3:xdr:3:
+@:LDP man-pages:3.25:2007/12/30:xdr_getpos:3:xdr:3:
+@:LDP man-pages:3.25:2007/12/30:xdr_inline:3:xdr:3:
+@:LDP man-pages:3.25:2007/12/30:xdr_int:3:xdr:3:
+@:LDP man-pages:3.25:2007/12/30:xdr_long:3:xdr:3:
+@:LDP man-pages:3.25:2007/12/30:xdr_opaque:3:xdr:3:
+@:LDP man-pages:3.25:2008/07/17:xdr_opaque_auth:3:rpc:3:
+@:LDP man-pages:3.25:2008/07/17:xdr_pmap:3:rpc:3:
+@:LDP man-pages:3.25:2008/07/17:xdr_pmaplist:3:rpc:3:
+@:LDP man-pages:3.25:2007/12/30:xdr_pointer:3:xdr:3:
+@:LDP man-pages:3.25:2007/12/30:xdr_reference:3:xdr:3:
+@:LDP man-pages:3.25:2008/07/17:xdr_rejected_reply:3:rpc:3:
+@:LDP man-pages:3.25:2008/07/17:xdr_replymsg:3:rpc:3:
+@:LDP man-pages:3.25:2007/12/30:xdr_setpos:3:xdr:3:
+@:LDP man-pages:3.25:2007/12/30:xdr_short:3:xdr:3:
+@:LDP man-pages:3.25:2007/12/30:xdr_string:3:xdr:3:
+@:LDP man-pages:3.25:2007/12/30:xdr_u_char:3:xdr:3:
+@:LDP man-pages:3.25:2007/12/30:xdr_u_int:3:xdr:3:
+@:LDP man-pages:3.25:2007/12/30:xdr_u_long:3:xdr:3:
+@:LDP man-pages:3.25:2007/12/30:xdr_u_short:3:xdr:3:
+@:LDP man-pages:3.25:2007/12/30:xdr_union:3:xdr:3:
+@:LDP man-pages:3.25:2007/12/30:xdr_vector:3:xdr:3:
+@:LDP man-pages:3.25:2007/12/30:xdr_void:3:xdr:3:
+@:LDP man-pages:3.25:2007/12/30:xdr_wrapstring:3:xdr:3:
+@:LDP man-pages:3.25:2007/12/30:xdrmem_create:3:xdr:3:
+@:LDP man-pages:3.25:2007/12/30:xdrrec_create:3:xdr:3:
+@:LDP man-pages:3.25:2007/12/30:xdrrec_endofrecord:3:xdr:3:
+@:LDP man-pages:3.25:2007/12/30:xdrrec_eof:3:xdr:3:
+@:LDP man-pages:3.25:2007/12/30:xdrrec_skiprecord:3:xdr:3:
+@:LDP man-pages:3.25:2007/12/30:xdrstdio_create:3:xdr:3:
+@:LDP man-pages:3.25:2003/04/04:xencrypt:3:xcrypt:3:
+@:LDP man-pages:3.25:2008/07/17:xprt_register:3:rpc:3:
+@:LDP man-pages:3.25:2008/07/17:xprt_unregister:3:rpc:3:
+○:LDP man-pages:3.25:2008/08/10:y0:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/08/10:y0f:3:y0:3:
+@:LDP man-pages:3.25:2008/08/10:y0l:3:y0:3:
+@:LDP man-pages:3.25:2008/08/10:y1:3:y0:3:
+@:LDP man-pages:3.25:2008/08/10:y1f:3:y0:3:
+@:LDP man-pages:3.25:2008/08/10:y1l:3:y0:3:
+@:LDP man-pages:3.25:2008/08/10:yn:3:y0:3:
+@:LDP man-pages:3.25:2008/08/10:ynf:3:y0:3:
+@:LDP man-pages:3.25:2008/08/10:ynl:3:y0:3:
+○:LDP man-pages:3.25:1994/10/31:console:4:2002/01/14:o:argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.25:2008/01/01:console_codes:4:2008/10/08::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.25:2009/02/28:console_ioctl:4:2008/07/22::argrath@ub32.org:Kentaro Shirakata:
+×:LDP man-pages:3.25:2009/03/31:cpuid:4:::::
+○:LDP man-pages:3.25:2000/03/01:dsp56k:4:2000/07/11::sato@complex.eng.hokudai.ac.jp:Yuichi SATO:
+@:LDP man-pages:3.25:2009/02/01:epoll:4:epoll:7:
+○:LDP man-pages:3.25:1995/01/29:fd:4:1998/01/12:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi:
+@:LDP man-pages:3.25:2008/12/03:fifo:4:fifo:7:
+○:LDP man-pages:3.25:1997/08/02:full:4:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2002/12/31:futex:4:futex:7:
+○:LDP man-pages:3.25:1992/12/17:hd:4:1998/02/05:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi:
+○:LDP man-pages:3.25:2009/04/04:initrd:4:2005/10/09:o:amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2007/10/23:intro:4:1998/02/05:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi:
+@:LDP man-pages:3.25:1992/11/21:kmem:4:mem:4:
+○:LDP man-pages:3.25:1995/01/15:lp:4:1998/02/05:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi:
+○:LDP man-pages:3.25:1992/11/21:mem:4:1998/02/05:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi:
+○:LDP man-pages:3.25:1996/02/10:mouse:4:1999/03/24:o:ss236rx@ymg.urban.ne.jp:Shouichi Saito:
+×:LDP man-pages:3.25:2009/03/31:msr:4:::::
+○:LDP man-pages:3.25:2009/02/23:null:4:1998/02/05:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi:
+@:LDP man-pages:3.25:1992/11/21:port:4:mem:4:
+@:LDP man-pages:3.25:2002/10/09:ptmx:4:pts:4:
+○:LDP man-pages:3.25:2002/10/09:pts:4:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:1992/11/21:ram:4:1997/01/12:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi:
+○:LDP man-pages:3.25:2008/06/20:random:4:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2010/02/25:rtc:4:2007/02/08::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.25:1992/12/17:sd:4:1998/02/05::ishikawa@linux.or.jp:ISHIKAWA Mutsumi:
+○:LDP man-pages:3.25:2007/11/25:sk98lin:4:2007/06/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2007/12/16:st:4:2005/06/12::nakano@st.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.25:2003/04/07:tty:4:2003/09/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:1992/12/19:ttyS:4:1998/02/05::ishikawa@linux.or.jp:ISHIKAWA Mutsumi:
+○:LDP man-pages:3.25:2008/10/29:tty_ioctl:4:2004/11/16::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.25:2008/06/20:urandom:4:random:4:
+○:LDP man-pages:3.25:2007/12/17:vcs:4:2001/02/11::sato@complex.eng.hokudai.ac.jp:Yuichi SATO:
+@:LDP man-pages:3.25:2007/12/17:vcsa:4:vcs:4:
+○:LDP man-pages:3.25:1996/10/22:wavelan:4:1998/02/10::ishikawa@linux.or.jp:ISHIKAWA Mutsumi:
+@:LDP man-pages:3.25:2009/02/23:zero:4:null:4:
+○:LDP man-pages:3.25:2008/06/15:acct:5:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:1994/11/28:charmap:5:2008/07/22::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.25:2009/07/25:complex:5:complex:7:
+☆:LDP man-pages:3.24=>3.25:2010/02/27:core:5:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2001/12/26:dir_colors:5:2002/01/14::ysato@h4.dion.ne.jp:Yuichi SATO:
+☆:LDP man-pages:3.24=>3.25:2010/06/19:elf:5:2005/11/03::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.25:2009/07/25:environ:5:environ:7:
+☆:LDP man-pages:3.24=>3.25:2010/05/24:filesystems:5:2008/02/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2010/05/24:fs:5:filesystems:5:
+○:LDP man-pages:3.25:2000/08/27:ftpusers:5:2001/03/12::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.25:2009/10/17:group:5:2005/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2003/08/23:host.conf:5:2003/10/15::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2002/06/16:hosts:5:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2003/08/24:hosts.equiv:5:2005/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2007/10/23:intro:5:1998/10/13::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+@:LDP man-pages:3.25:2009/01/26:ipc:5:svipc:7:
+○:LDP man-pages:3.25:1993/07/24:issue:5:1998/07/25::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.25:2008/06/17:locale:5:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:1992/12/29:motd:5:1998/2/4::nagoya@cc.hit-u.ac.jp:Hiroaki Nagoya:
+×:LDP man-pages:3.25:2008/09/04:networks:5:::::
+○:LDP man-pages:3.25:1992/12/29:nologin:5:1998/02/18::rui@linux.or.jp:Ueyama Rui:
+○:LDP man-pages:3.25:1999/10/01:nscd.conf:5:2006/07/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:1999/01/17:nsswitch.conf:5:2001/10/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+※:LDP man-pages:3.25:2008/08/15:numa_maps:5:numa:7:
+○:LDP man-pages:3.25:1998/01/05:passwd:5:2006/07/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.24=>3.25:2010/06/19:proc:5:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/09/23:protocols:5:2008/07/22::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.25:2009/03/01:resolv.conf:5:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2009/03/01:resolver:5:resolv.conf:5:
+☆:LDP man-pages:3.24=>3.25:1985/09/26:rpc:5:2008/07/22::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.25:1992/12/29:securetty:5:2003/01/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.24=>3.25:2010/05/22:services:5:2002/08/14::amotoki@dd.iij4u.or.jp:Akihiro Motoki:
+○:LDP man-pages:3.25:1993/11/21:shells:5:2000/12/11::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.25:2001/06/19:slabinfo:5:2001/09/10::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.25:1996/10/21:termcap:5:2000/10/12::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.25:1993/07/24:ttytype:5:1998/02/10::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.25:1996/06/05:tzfile:5:1999/09/14::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.25:2008/10/10:utmp:5:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2008/10/10:utmpx:5:utmp:5:
+@:LDP man-pages:3.25:2008/10/10:wtmp:5:utmp:5:
+○:LDP man-pages:3.25:2007/10/23:intro:6:1997/11/15::pessi@kmc.kyoto-u.ac.jp:II Ryouta:
+×:LDP man-pages:3.25:2009/01/21:armscii-8:7:::::
+○:LDP man-pages:3.25:2008/11/25:arp:7:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2009/02/12:ascii:7:2006/04/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2007/06/03:boot:7:2005/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2007/12/16:bootparam:7:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.24=>3.25:2010/06/19:capabilities:7:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/06/03:charsets:7:2008/07/22::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.25:2009/07/25:complex:7:2006/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+×:LDP man-pages:3.25:2009/01/15:cp1251:7:::::
+×:LDP man-pages:3.25:2008/11/12:cpuset:7:::::
+○:LDP man-pages:3.25:2008/06/03:credentials:7:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/11/20:ddp:7:1999/12/06::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.25:2009/07/25:environ:7:2006/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2009/02/01:epoll:7:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2009/12/13:feature_test_macros:7:2007/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/12/03:fifo:7:2006/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2002/12/31:futex:7:2006/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+※:LDP man-pages:3.25:2009/01/13:glibc:7:libc:7:
+○:LDP man-pages:3.25:2003/08/24:glob:7:2003/09/28::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.25:2009/03/30:hier:7:2002/01/14::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+×:LDP man-pages:3.25:2008/06/11:hostname:7:::::
+○:LDP man-pages:3.25:2010/02/25:icmp:7:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/11/18:inotify:7:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:1993/04/23:intro:7:2005/12/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2009/02/28:ip:7:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2009/02/28:ipv6:7:2006/01/14::ysato444@yahoo.co.jp:Yuichi SATO:
+@:LDP man-pages:3.25:1999/05/31:iso-8859-1:7:iso_8859-1:7:
+※:LDP man-pages:3.25:2009/01/15:iso-8859-10:7:iso_8859-10:7:
+※:LDP man-pages:3.25:2009/01/28:iso-8859-11:7:iso_8859-11:7:
+※:LDP man-pages:3.25:2009/01/15:iso-8859-13:7:iso_8859-13:7:
+※:LDP man-pages:3.25:2009/01/15:iso-8859-14:7:iso_8859-14:7:
+@:LDP man-pages:3.25:1999/05/31:iso-8859-15:7:iso_8859-15:7:
+@:LDP man-pages:3.25:2003/03/05:iso-8859-16:7:iso_8859-16:7:
+@:LDP man-pages:3.25:2007/11/25:iso-8859-2:7:iso_8859-2:7:
+※:LDP man-pages:3.25:2009/01/15:iso-8859-3:7:iso_8859-3:7:
+※:LDP man-pages:3.25:2009/01/24:iso-8859-4:7:iso_8859-4:7:
+※:LDP man-pages:3.25:2009/01/15:iso-8859-5:7:iso_8859-5:7:
+※:LDP man-pages:3.25:2009/01/27:iso-8859-6:7:iso_8859-6:7:
+@:LDP man-pages:3.25:2008/10/30:iso-8859-7:7:iso_8859-7:7:
+※:LDP man-pages:3.25:2009/01/15:iso-8859-8:7:iso_8859-8:7:
+@:LDP man-pages:3.25:2002/09/24:iso-8859-9:7:iso_8859-9:7:
+○:LDP man-pages:3.25:1999/05/31:iso_8859-1:7:2002/09/14::argrath@ub32.org:Kentaro Shirakata:
+×:LDP man-pages:3.25:2009/01/15:iso_8859-10:7:::::
+×:LDP man-pages:3.25:2009/01/28:iso_8859-11:7:::::
+×:LDP man-pages:3.25:2009/01/15:iso_8859-13:7:::::
+×:LDP man-pages:3.25:2009/01/15:iso_8859-14:7:::::
+○:LDP man-pages:3.25:1999/05/31:iso_8859-15:7:2002/09/28::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+○:LDP man-pages:3.25:2003/03/05:iso_8859-16:7:2003/09/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2007/11/25:iso_8859-2:7:2002/09/28::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+×:LDP man-pages:3.25:2009/01/15:iso_8859-3:7:::::
+×:LDP man-pages:3.25:2009/01/24:iso_8859-4:7:::::
+×:LDP man-pages:3.25:2009/01/15:iso_8859-5:7:::::
+×:LDP man-pages:3.25:2009/01/27:iso_8859-6:7:::::
+○:LDP man-pages:3.25:2008/10/30:iso_8859-7:7:2002/09/28::hanataka@abyss.rim.or.jp:HANATAKA Shinya:
+×:LDP man-pages:3.25:2009/01/15:iso_8859-8:7:::::
+○:LDP man-pages:3.25:2002/09/24:iso_8859-9:7:2003/01/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:1999/05/31:iso_8859_1:7:iso_8859-1:7:
+※:LDP man-pages:3.25:2009/01/15:iso_8859_10:7:iso_8859-10:7:
+※:LDP man-pages:3.25:2009/01/28:iso_8859_11:7:iso_8859-11:7:
+※:LDP man-pages:3.25:2009/01/15:iso_8859_13:7:iso_8859-13:7:
+※:LDP man-pages:3.25:2009/01/15:iso_8859_14:7:iso_8859-14:7:
+@:LDP man-pages:3.25:1999/05/31:iso_8859_15:7:iso_8859-15:7:
+@:LDP man-pages:3.25:2003/03/05:iso_8859_16:7:iso_8859-16:7:
+@:LDP man-pages:3.25:2007/11/25:iso_8859_2:7:iso_8859-2:7:
+※:LDP man-pages:3.25:2009/01/15:iso_8859_3:7:iso_8859-3:7:
+※:LDP man-pages:3.25:2009/01/24:iso_8859_4:7:iso_8859-4:7:
+※:LDP man-pages:3.25:2009/01/15:iso_8859_5:7:iso_8859-5:7:
+※:LDP man-pages:3.25:2009/01/27:iso_8859_6:7:iso_8859-6:7:
+@:LDP man-pages:3.25:2008/10/30:iso_8859_7:7:iso_8859-7:7:
+※:LDP man-pages:3.25:2009/01/15:iso_8859_8:7:iso_8859-8:7:
+@:LDP man-pages:3.25:2002/09/24:iso_8859_9:7:iso_8859-9:7:
+○:LDP man-pages:3.25:2009/02/04:koi8-r:7:2001/07/14::ysato@h4.dion.ne.jp:Yuichi SATO:
+×:LDP man-pages:3.25:2009/01/15:koi8-u:7:::::
+@:LDP man-pages:3.25:1999/05/31:latin1:7:iso_8859-1:7:
+@:LDP man-pages:3.25:2003/03/05:latin10:7:iso_8859-16:7:
+@:LDP man-pages:3.25:2007/11/25:latin2:7:iso_8859-2:7:
+※:LDP man-pages:3.25:2009/01/15:latin3:7:iso_8859-3:7:
+※:LDP man-pages:3.25:2009/01/24:latin4:7:iso_8859-4:7:
+@:LDP man-pages:3.25:2002/09/24:latin5:7:iso_8859-9:7:
+※:LDP man-pages:3.25:2009/01/15:latin6:7:iso_8859-10:7:
+※:LDP man-pages:3.25:2009/01/15:latin7:7:iso_8859-13:7:
+※:LDP man-pages:3.25:2009/01/15:latin8:7:iso_8859-14:7:
+@:LDP man-pages:3.25:1999/05/31:latin9:7:iso_8859-15:7:
+×:LDP man-pages:3.25:2009/01/13:libc:7:::::
+○:LDP man-pages:3.25:2008/12/05:locale:7:2006/02/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2004/09/15:mailaddr:7:2005/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2007/05/30:man:7:2007/06/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/10/28:man-pages:7:2008/02/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/08/11:math_error:7:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.24=>3.25:0000/00/00:mdoc:7:2008/10/08::argrath@ub32.org:Kentaro Shirakata:
+c:LDP man-pages:3.24=>3.25:0000/00/00:mdoc.samples:7:1999/01/21::man-jp@freebsd.org:FreeBSD jpman project:http://www.jp.freebsd.org/man-jp/
+○:LDP man-pages:3.25:2009/09/27:mq_overview:7:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2009/01/14:netdevice:7:2009/03/05::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.25:2008/11/11:netlink:7:2006/07/12::ysato444@yahoo.co.jp:Yuichi SATO:
+×:LDP man-pages:3.25:2008/08/15:numa:7:::::
+○:LDP man-pages:3.25:2004/08/24:operator:7:2004/11/16::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2008/08/08:packet:7:2005/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2009/12/05:path_resolution:7:2007/06/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2005/12/08:pipe:7:2005/12/27::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2007/12/21:posixoptions:7:2005/01/14::ysato444@yahoo.co.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2008/11/18:pthreads:7:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2005/10/10:pty:7:2005/10/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/11/20:raw:7:2007/01/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2009/01/12:regex:7:1998/07/08::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+×:LDP man-pages:3.25:2009/03/30:rtld-audit:7:::::
+○:LDP man-pages:3.25:2008/08/08:rtnetlink:7:2001/03/11::argrath@ub32.org:Kentaro Shirakata:
+☆:LDP man-pages:3.24=>3.25:2010/05/22:sem_overview:7:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/06/25:shm_overview:7:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.24=>3.25:2010/06/12:signal:7:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:3.24=>3.25:2010/06/13:socket:7:2007/01/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+☆:LDP man-pages:2.67=>3.25:2007/12/20:spufs:7:2007/10/23::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2009/06/01:standards:7:2006/08/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2000/11/16:suffixes:7:2001/04/24::ysato@h4.dion.ne.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2009/01/26:svipc:7:2006/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+×:LDP man-pages:3.25:2008/06/18:symlink:7:::::
+○:LDP man-pages:3.25:2009/09/30:tcp:7:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2006/12/28:termio:7:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2010/02/25:time:7:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+※:LDP man-pages:3.25:2009/01/28:tis-620:7:iso_8859-11:7:
+☆:LDP man-pages:3.24=>3.25:2010/06/13:udp:7:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2008/12/03:udplite:7:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2001/05/11:unicode:7:2001/07/14::ysato@h4.dion.ne.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2001/12/22:units:7:2002/01/14::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.25:2008/12/01:unix:7:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25:2000/03/14:uri:7:2008/07/22::argrath@ub32.org:Kentaro Shirakata:
+@:LDP man-pages:3.25:2000/03/14:url:7:uri:7:
+@:LDP man-pages:3.25:2000/03/14:urn:7:uri:7:
+○:LDP man-pages:3.25:2001/05/11:utf-8:7:2001/07/14::ysato@h4.dion.ne.jp:Yuichi SATO:
+@:LDP man-pages:3.25:2001/05/11:utf8:7:utf-8:7:
+○:LDP man-pages:3.25:2008/08/08:x25:7:1999/12/06::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.25:2007/10/23:intro:8:2008/02/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+@:LDP man-pages:3.25:2009/01/12:ld-linux:8:ld.so:8:
+@:LDP man-pages:3.25:2009/01/12:ld-linux.so:8:ld.so:8:
+○:LDP man-pages:3.25:2009/01/12:ld.so:8:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI:
+○:LDP man-pages:3.25: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.25:2008/12/05:nscd:8:2009/03/14::argrath@ub32.org:Kentaro Shirakata:
+○:LDP man-pages:3.25:1998/11/01:sync:8:2000/06/13::sato@complex.eng.hokudai.ac.jp:Yuichi SATO:
+○:LDP man-pages:3.25:2007/05/18:tzselect:8:2002/01/14::ysato@h4.dion.ne.jp:Yuichi SATO:
+○:LDP man-pages:3.25:0000/00/00:zdump:8:1999/09/14::nakano@apm.seikei.ac.jp:NAKANO Takeo:
+○:LDP man-pages:3.25:2010/02/25:zic:8:2001/04/04::sato@complex.eng.hokudai.ac.jp:Yuichi SATO: