From: Akihiro MOTOKI Date: Sat, 4 Dec 2010 17:25:34 +0000 (+0900) Subject: (split) LDP man-pages の original/ を v3.32 に更新。 X-Git-Tag: LDP-3.32-final~15 X-Git-Url: http://git.osdn.net/view?p=linuxjm%2FLDP_man-pages.git;a=commitdiff_plain;h=23a084fc69530ead1080597194655bb75c7d798b (split) LDP man-pages の original/ を v3.32 に更新。 --- diff --git a/original/man-pages.lsm b/original/man-pages.lsm index b38489eb..14ccae18 100644 --- a/original/man-pages.lsm +++ b/original/man-pages.lsm @@ -1,13 +1,13 @@ Begin3 Title: Section 2, 3, 4, 5 and 7 man pages for Linux -Version: 3.31 -Entered-date: 2010-11-12 +Version: 3.32 +Entered-date: 2010-12-03 Description: Linux manual pages Keywords: man pages Author: several Maintained-by: Michael Kerrisk Primary-site: ftp://ftp.kernel.org/pub/linux/docs/man-pages - 1663k man-pages-3.31.tar.gz + 1668k man-pages-3.32.tar.gz Alternate-site: ftp://ftp.win.tue.nl/pub/linux-local/manpages Copying-policy: several; the pages are all freely distributable as long as nroff source is provided diff --git a/original/man2/chdir.2 b/original/man2/chdir.2 index 698e9502..5b9b973a 100644 --- a/original/man2/chdir.2 +++ b/original/man2/chdir.2 @@ -30,7 +30,7 @@ .\" Modified 1997-08-21 by Joseph S. Myers .\" Modified 2004-06-23 by Michael Kerrisk .\" -.TH CHDIR 2 2010-09-26 "Linux" "Linux Programmer's Manual" +.TH CHDIR 2 2010-11-25 "Linux" "Linux Programmer's Manual" .SH NAME chdir, fchdir \- change working directory .SH SYNOPSIS @@ -133,14 +133,6 @@ A child process created via inherits its parent's current working directory. The current working directory is left unchanged by .BR execve (2). - -The prototype for -.BR fchdir () -is only available if -.B _BSD_SOURCE -is defined, or -.B _XOPEN_SOURCE -is defined with the value 500. .SH "SEE ALSO" .BR chroot (2), .BR getcwd (3), diff --git a/original/man2/chown.2 b/original/man2/chown.2 index 85ba4bb7..deb87c70 100644 --- a/original/man2/chown.2 +++ b/original/man2/chown.2 @@ -35,7 +35,7 @@ .\" (bsdgroups versus sysvgroups, and the effect of the parent .\" directory's set-group-ID permission bit). .\" -.TH CHOWN 2 2010-09-26 "Linux" "Linux Programmer's Manual" +.TH CHOWN 2 2010-11-22 "Linux" "Linux Programmer's Manual" .SH NAME chown, fchown, lchown \- change ownership of a file .SH SYNOPSIS @@ -190,6 +190,25 @@ used by the superuser (that is, ordinary users cannot give away files). .\" SVr4 documents additional EINVAL, EIO, EINTR, and ENOLINK .\" error conditions. .SH NOTES +The original Linux +.BR chown (), +.BR fchown (), +and +.BR lchown () +system calls supported only 16-bit user and group IDs. +Subsequently, Linux 2.4 added +.BR chown32 (), +.BR fchown32 (), +and +.BR lchown32 (), +supporting 32-bit IDs. +The glibc +.BR chown (), +.BR fchown (), +and +.BR lchown () +wrapper functions transparently deal with the variations across kernel versions. + When a new file is created (by, for example, .BR open (2) or diff --git a/original/man2/clock_nanosleep.2 b/original/man2/clock_nanosleep.2 index b1d95b26..6c37d67a 100644 --- a/original/man2/clock_nanosleep.2 +++ b/original/man2/clock_nanosleep.2 @@ -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 CLOCK_NANOSLEEP 2 2010-09-10 "Linux" "Linux Programmer's Manual" +.TH CLOCK_NANOSLEEP 2 2010-12-03 "Linux" "Linux Programmer's Manual" .SH NAME clock_nanosleep \- high-resolution sleep with specifiable clock .SH SYNOPSIS @@ -50,7 +50,7 @@ _XOPEN_SOURCE\ >=\ 600 || _POSIX_C_SOURCE\ >=\ 200112L Like .BR nanosleep (2), .BR clock_nanosleep () -allows the caller to sleep for an interval specified +allows the calling thread to sleep for an interval specified with nanosecond precision. It differs in allowing the caller to select the clock against which the sleep interval is to be measured, diff --git a/original/man2/epoll_create.2 b/original/man2/epoll_create.2 index de085221..2c707848 100644 --- a/original/man2/epoll_create.2 +++ b/original/man2/epoll_create.2 @@ -22,7 +22,7 @@ .\" Modified 2005-04-04 by Marko Kohtala .\" 2008-10-10, mtk: add description of epoll_create1() .\" -.TH EPOLL_CREATE 2 2009-01-17 "Linux" "Linux Programmer's Manual" +.TH EPOLL_CREATE 2 2010-12-03 "Linux" "Linux Programmer's Manual" .SH NAME epoll_create, epoll_create1 \- open an epoll file descriptor .SH SYNOPSIS @@ -44,7 +44,7 @@ is not the maximum size of the backing store but just a hint to the kernel about how to dimension internal structures. (Nowadays, .I size -is ignored; see NOTES below.) +is unused; see NOTES below.) .BR epoll_create () returns a file descriptor referring to the new epoll instance. @@ -111,14 +111,23 @@ The system limit on the total number of open files has been reached. .TP .B ENOMEM There was insufficient memory to create the kernel object. -.SH CONFORMING TO +.SH VERSIONS .BR epoll_create () -is Linux-specific, and was introduced in kernel 2.5.44. +was added to the kernel in version 2.6. +Library support is provided in glibc starting with version 2.3.2. + +.\" To be precise: kernel 2.5.44. .\" The interface should be finalized by Linux kernel 2.5.66. +.BR epoll_create1 () +was added to the kernel in version 2.6.27. +Library support is provided in glibc starting with version 2.9. +.SH CONFORMING TO +.BR epoll_create () +is Linux-specific. .SH NOTES Since Linux 2.6.8, the .I size -argument is unused. +argument is unused, but must be greater than zero. (The kernel dynamically sizes the required data structures without needing this initial hint.) .SH "SEE ALSO" diff --git a/original/man2/epoll_ctl.2 b/original/man2/epoll_ctl.2 index e62e652e..9c2b621a 100644 --- a/original/man2/epoll_ctl.2 +++ b/original/man2/epoll_ctl.2 @@ -18,7 +18,7 @@ .\" .\" Davide Libenzi .\" -.TH EPOLL_CTL 2 2010-08-29 "Linux" "Linux Programmer's Manual" +.TH EPOLL_CTL 2 2010-12-03 "Linux" "Linux Programmer's Manual" .SH NAME epoll_ctl \- control interface for an epoll descriptor .SH SYNOPSIS @@ -221,10 +221,15 @@ The target file .I fd does not support .BR epoll . -.SH CONFORMING TO +.SH VERSIONS .BR epoll_ctl () -is Linux-specific, and was introduced in kernel 2.5.44. +was added to the kernel in version 2.6. +.\" To be precise: kernel 2.5.44. .\" The interface should be finalized by Linux kernel 2.5.66. +.SH CONFORMING TO +.BR epoll_ctl () +is Linux-specific. +Library support is provided in glibc starting with version 2.3.2. .SH NOTES The .B epoll diff --git a/original/man2/epoll_wait.2 b/original/man2/epoll_wait.2 index 2962ff42..05d9ebe3 100644 --- a/original/man2/epoll_wait.2 +++ b/original/man2/epoll_wait.2 @@ -20,7 +20,7 @@ .\" .\" 2007-04-30: mtk, Added description of epoll_pwait() .\" -.TH EPOLL_WAIT 2 2009-01-17 "Linux" "Linux Programmer's Manual" +.TH EPOLL_WAIT 2 2010-12-03 "Linux" "Linux Programmer's Manual" .SH NAME epoll_wait, epoll_pwait \- wait for an I/O event on an epoll file descriptor .SH SYNOPSIS @@ -172,16 +172,18 @@ file descriptor, or .I maxevents is less than or equal to zero. .SH VERSIONS -.BR epoll_pwait () -was added to Linux in kernel 2.6.19. +.BR epoll_wait () +was added to the kernel in version 2.6. +.\" To be precise: kernel 2.5.44. +.\" The interface should be finalized by Linux kernel 2.5.66. +Library support is provided in glibc starting with version 2.3.2. -Glibc support for .BR epoll_pwait () -is provided starting with version 2.6. +was added to Linux in kernel 2.6.19. +Library support is provided in glibc starting with version 2.6. .SH CONFORMING TO .BR epoll_wait () -is Linux-specific, and was introduced in kernel 2.5.44. -.\" The interface should be finalized by Linux kernel 2.5.66. +is Linux-specific. .SH "SEE ALSO" .BR epoll_create (2), .BR epoll_ctl (2), diff --git a/original/man2/fcntl.2 b/original/man2/fcntl.2 index 18e8d263..1616e99b 100644 --- a/original/man2/fcntl.2 +++ b/original/man2/fcntl.2 @@ -58,7 +58,7 @@ .\" 2010-06-17, Michael Kerrisk .\" Document F_SETPIPE_SZ and F_GETPIPE_SZ. .\" -.TH FCNTL 2 2010-11-01 "Linux" "Linux Programmer's Manual" +.TH FCNTL 2 2010-11-21 "Linux" "Linux Programmer's Manual" .SH NAME fcntl \- manipulate file descriptor .SH SYNOPSIS @@ -1184,6 +1184,27 @@ macro to obtain these definitions.) .\" .PP .\" SVr4 documents additional EIO, ENOLINK and EOVERFLOW error conditions. .SH NOTES +The original Linux +.BR fcntl () +system call was not designed to handle large file offsets +(in the +.I flock +structure). +Consequently, an +.BR fcntl64 () +system call was added in Linux 2.4. +The newer system call employs a different structure for file locking, +.IR flock64 , +and corresponding commands, +.BR F_GETLK64 , +.BR F_SETLK64 , +and +.BR F_SETLKW64 . +However, these details can be ignored by applications using glibc, whose +.BR fcntl () +wrapper function transparently employs the more recent system call +where it is available. + The errors returned by .BR dup2 (2) are different from those returned by diff --git a/original/man2/fstatat.2 b/original/man2/fstatat.2 index 17a25483..20b4c197 100644 --- a/original/man2/fstatat.2 +++ b/original/man2/fstatat.2 @@ -23,7 +23,7 @@ .\" the source, must acknowledge the copyright and authors of this work. .\" .\" -.TH FSTATAT 2 2009-12-13 "Linux" "Linux Programmer's Manual" +.TH FSTATAT 2 2010-11-21 "Linux" "Linux Programmer's Manual" .SH NAME fstatat \- get file status relative to a directory file descriptor .SH SYNOPSIS @@ -141,6 +141,11 @@ See .BR openat (2) for an explanation of the need for .BR fstatat (). + +The underlying system call employed by the glibc +.BR fstatat() +wrapper function is actually called +.BR fstatat64 (). .SH "SEE ALSO" .BR openat (2), .BR stat (2), diff --git a/original/man2/getdents.2 b/original/man2/getdents.2 index d7cd7a68..0e1729c3 100644 --- a/original/man2/getdents.2 +++ b/original/man2/getdents.2 @@ -24,7 +24,7 @@ .\" Modified 22 July 1995 by Michael Chastain : .\" Derived from 'readdir.2'. .\" Modified Tue Oct 22 08:11:14 EDT 1996 by Eric S. Raymond -.TH GETDENTS 2 2009-07-04 "Linux" "Linux Programmer's Manual" +.TH GETDENTS 2 2010-11-21 "Linux" "Linux Programmer's Manual" .SH NAME getdents \- get directory entries .SH SYNOPSIS @@ -168,7 +168,22 @@ structure yourself. This call supersedes .BR readdir (2). + +The original Linux +.BR getdents () +system call did not handle large file systems and large file offsets. +Consequently, Linux 2.4 added +.BR getdents64 (), +with wider types for the +.I d_ino +and +.I d_off +fields employed in the +.IR linux_dirent +structure. .SH EXAMPLE +.\" FIXME: This program uses the older getdents(0 system call +.\" and the structure with smaller field widths. The program below demonstrates the use of .BR getdents (). The following output shows an example of what we see when running this diff --git a/original/man2/getgid.2 b/original/man2/getgid.2 index a78babc6..1fc602b4 100644 --- a/original/man2/getgid.2 +++ b/original/man2/getgid.2 @@ -22,7 +22,7 @@ .\" Formatted or processed versions of this manual, if unaccompanied by .\" the source, must acknowledge the copyright and authors of this work. .\" -.TH GETGID 2 1993-07-23 "Linux" "Linux Programmer's Manual" +.TH GETGID 2 2010-11-22 "Linux" "Linux Programmer's Manual" .SH NAME getgid, getegid \- get group identity .SH SYNOPSIS @@ -43,6 +43,22 @@ returns the effective group ID of the calling process. These functions are always successful. .SH "CONFORMING TO" POSIX.1-2001, 4.3BSD. +.SH NOTES +The original Linux +.BR getgid () +and +.BR getegid () +system calls supported only 16-bit group IDs. +Subsequently, Linux 2.4 added +.BR getgid32 () +and +.BR getegid32 (), +supporting 32-bit IDs. +The glibc +.BR getgid () +and +.BR getegid () +wrapper functions transparently deal with the variations across kernel versions. .SH "SEE ALSO" .BR getresgid (2), .BR setgid (2), diff --git a/original/man2/getgroups.2 b/original/man2/getgroups.2 index 9851c870..3c47375c 100644 --- a/original/man2/getgroups.2 +++ b/original/man2/getgroups.2 @@ -28,7 +28,7 @@ .\" 2008-05-03, mtk, expanded and rewrote parts of DESCRIPTION and RETURN .\" VALUE, made style of page more consistent with man-pages style. .\" -.TH GETGROUPS 2 2008-06-03 "Linux" "Linux Programmer's Manual" +.TH GETGROUPS 2 2010-11-22 "Linux" "Linux Programmer's Manual" .SH NAME getgroups, setgroups \- get/set list of supplementary group IDs .SH SYNOPSIS @@ -158,6 +158,16 @@ The maximum number of supplementary group IDs can be found using The maximum return value of .BR getgroups () cannot be larger than one more than this value. + +The original Linux +.BR getgroups () +system call supported only 16-bit group IDs. +Subsequently, Linux 2.4 added +.BR getgroups32 (), +supporting 32-bit IDs. +The glibc +.BR getgroups () +wrapper function transparently deals with the variation across kernel versions. .SH "SEE ALSO" .BR getgid (2), .BR setgid (2), diff --git a/original/man2/getpagesize.2 b/original/man2/getpagesize.2 index 1d5c1902..2f270395 100644 --- a/original/man2/getpagesize.2 +++ b/original/man2/getpagesize.2 @@ -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 GETPAGESIZE 2 2010-09-20 "Linux" "Linux Programmer's Manual" +.TH GETPAGESIZE 2 2010-11-16 "Linux" "Linux Programmer's Manual" .SH NAME getpagesize \- get memory page size .SH SYNOPSIS @@ -53,34 +53,10 @@ _XOPEN_SOURCE\ &&\ _XOPEN_SOURCE_EXTENDED .SH DESCRIPTION The function .BR getpagesize () -returns the number of bytes in a page, where a "page" is the thing -used where it says in the description of -.BR mmap (2) -that files are mapped in page-sized units. - -The size of the kind of pages that -.BR mmap (2) -uses, is found using - -.in +4n -.nf -#include -long sz = sysconf(_SC_PAGESIZE); -.fi -.in - -(most systems allow the synonym -.B _SC_PAGE_SIZE -for -.BR _SC_PAGESIZE ), -or - -.in +4n -.nf -#include -int sz = getpagesize(); -.fi -.in +returns the number of bytes in a memory page, +where "page" is a fixed-length block, +the unit for memory allocation and file mapping performed by +.BR mmap (2). .\" .SH HISTORY .\" This call first appeared in 4.2BSD. .SH CONFORMING TO @@ -90,10 +66,24 @@ In SUSv2 the call is labeled LEGACY, and in POSIX.1-2001 it has been dropped; HP-UX does not have this call. +.SH NOTES Portable applications should employ .I sysconf(_SC_PAGESIZE) -instead of this call. -.SH NOTES +instead of +.BR getpagesize (): +.PP +.in +4n +.nf +#include +long sz = sysconf(_SC_PAGESIZE); +.fi +.in + +(Most systems allow the synonym +.B _SC_PAGE_SIZE +for +.BR _SC_PAGESIZE .) + Whether .BR getpagesize () is present as a Linux system call depends on the architecture. diff --git a/original/man2/getresuid.2 b/original/man2/getresuid.2 index cb55000c..368eb1a4 100644 --- a/original/man2/getresuid.2 +++ b/original/man2/getresuid.2 @@ -24,7 +24,7 @@ .\" the source, must acknowledge the copyright and authors of this work. .\" .\" Modified, 2003-05-26, Michael Kerrisk, -.TH GETRESUID 2 2007-12-28 "Linux" "Linux Programmer's Manual" +.TH GETRESUID 2 2010-11-22 "Linux" "Linux Programmer's Manual" .SH NAME getresuid, getresgid \- get real, effective and saved user/group IDs .SH SYNOPSIS @@ -66,6 +66,22 @@ is defined. .SH "CONFORMING TO" These calls are nonstandard; they also appear on HP-UX and some of the BSDs. +.SH NOTES +The original Linux +.BR getresuid () +and +.BR getresgid () +system calls supported only 16-bit user and group IDs. +Subsequently, Linux 2.4 added +.BR getresuid32 () +and +.BR getresgid32 (), +supporting 32-bit IDs. +The glibc +.BR getresuid () +and +.BR getresgid () +wrapper functions transparently deal with the variations across kernel versions. .SH "SEE ALSO" .BR getuid (2), .BR setresuid (2), diff --git a/original/man2/getrlimit.2 b/original/man2/getrlimit.2 index 932e82e2..52f99ab2 100644 --- a/original/man2/getrlimit.2 +++ b/original/man2/getrlimit.2 @@ -1,7 +1,7 @@ .\" Hey Emacs! This file is -*- nroff -*- source. .\" .\" Copyright (c) 1992 Drew Eckhardt, March 28, 1992 -.\" and Copyright (c) 2002, 2004, 2005, 2008. 2010 Michael Kerrisk +.\" and Copyright (c) 2002, 2004, 2005, 2008, 2010 Michael Kerrisk .\" .\" Permission is granted to make and distribute verbatim copies of this .\" manual provided the copyright notice and this permission notice are @@ -61,7 +61,7 @@ .\" 2008-05-07, mtk / Peter Zijlstra, Added description of RLIMIT_RTTIME .\" 2010-11-06, mtk: Added documentation of prlimit() .\" -.TH GETRLIMIT 2 2010-11-06 "Linux" "Linux Programmer's Manual" +.TH GETRLIMIT 2 2010-12-03 "Linux" "Linux Programmer's Manual" .SH NAME getrlimit, setrlimit, prlimit \- get/set resource limits .SH SYNOPSIS @@ -87,7 +87,6 @@ Feature Test Macro Requirements for glibc (see _GNU_SOURCE .SH DESCRIPTION The -the .BR getrlimit () and .BR setrlimit () @@ -443,7 +442,6 @@ outside the accessible address space. The value specified in .I resource is not valid; -The value specified in or, for .BR setrlimit () or @@ -456,7 +454,7 @@ was greater than An unprivileged process tried to raise the hard limit; the .B CAP_SYS_RESOURCE capability is required to do this. -Or, the the caller tried to increase the hard +Or, the caller tried to increase the hard .B RLIMIT_NOFILE limit above the current kernel maximum .RB ( NR_OPEN ). @@ -468,7 +466,7 @@ for the process specified by Could not find a process with the ID specified in .IR pid . .SH VERSIONS -.BR The +The .BR prlimit () system call is available since Linux 2.6.36. Library support is available since glibc 2.13. @@ -519,6 +517,58 @@ For backward compatibility, glibc also provides .BR vlimit (). All new applications should be written using .BR setrlimit (). +.SH EXAMPLE +The program below demonstrates the use of +.BR prlimit (). +.PP +.nf +#define _GNU_SOURCE +#include +#include +#include +#include +#include + +int +main(int argc, char *argv[]) +{ + struct rlimit64 old, new; + struct rlimit64 *newp; + pid_t pid; + + if (!(argc == 2 || argc == 4)) { + fprintf(stderr, "Usage: %s [ " + "]\\n", argv[0]); + exit(EXIT_FAILURE); + } + + pid = atoi(argv[1]); /* PID of target process */ + + newp = NULL; + if (argc == 4) { + new.rlim_cur = atoi(argv[2]); + new.rlim_max = atoi(argv[3]); + newp = &new; + } + + /* Set CPU time limit of target prcess; retrieve and display + previous limit */ + + if (prlimit(pid, RLIMIT_CPU, newp, &old) == \-1) + errExit("prlimit\-1"); + printf("Previous limits: soft=%lld; hard=%lld\\n", + (long long) old.rlim_cur, (long long) old.rlim_max); + + /* Retrieve and display new CPU time limit */ + + if (prlimit(pid, RLIMIT_CPU, NULL, &old) == \-1) + errExit("prlimit\-2"); + printf("New limits: soft=%lld; hard=%lld\\n", + (long long) old.rlim_cur, (long long) old.rlim_max); + + exit(EXIT_FAILURE); +} +.fi .SH BUGS .\" FIXME prlimit() does not suffer .\" https://bugzilla.kernel.org/show_bug.cgi?id=5042 @@ -549,7 +599,7 @@ between the priority ranges returned by .BR getpriority (2) and .BR RLIMIT_NICE . -This had the effect that actual ceiling for the nice value +This had the effect that the actual ceiling for the nice value was calculated as .IR "19\ \-\ rlim_cur" . This was fixed in kernel 2.6.13. diff --git a/original/man2/getuid.2 b/original/man2/getuid.2 index afa59d47..bf138e30 100644 --- a/original/man2/getuid.2 +++ b/original/man2/getuid.2 @@ -23,7 +23,7 @@ .\" the source, must acknowledge the copyright and authors of this work. .\" .\" Historical remark, aeb, 2004-06-05 -.TH GETUID 2 1993-07-23 "Linux" "Linux Programmer's Manual" +.TH GETUID 2 2010-11-22 "Linux" "Linux Programmer's Manual" .SH NAME getuid, geteuid \- get user identity .SH SYNOPSIS @@ -54,6 +54,22 @@ UNIX V7 introduced separate calls .BR getuid () and .BR geteuid (). +.SH NOTES +The original Linux +.BR getuid () +and +.BR geteuid () +system calls supported only 16-bit user IDs. +Subsequently, Linux 2.4 added +.BR getuid32 () +and +.BR geteuid32 (), +supporting 32-bit IDs. +The glibc +.BR getuid () +and +.BR geteuid () +wrapper functions transparently deal with the variations across kernel versions. .SH "SEE ALSO" .BR getresuid (2), .BR setreuid (2), diff --git a/original/man2/open.2 b/original/man2/open.2 index beb1cbea..ff3aa88a 100644 --- a/original/man2/open.2 +++ b/original/man2/open.2 @@ -48,7 +48,7 @@ .\" O_TTYINIT. Eventually these may need to be documented. --mtk .\" FIXME Linux 2.6.33 has O_DSYNC, and a hidden __O_SYNC. .\" -.TH OPEN 2 2010-09-10 "Linux" "Linux Programmer's Manual" +.TH OPEN 2 2010-11-15 "Linux" "Linux Programmer's Manual" .SH NAME open, creat \- open and possibly create a file or device .SH SYNOPSIS @@ -319,11 +319,6 @@ and already exists, then .BR open () will fail. -The behavior of -.B O_EXCL -is undefined if -.B O_CREAT -is not specified. When these two flags are specified, symbolic links are not followed: .\" POSIX.1-2001 explicitly requires this behavior. @@ -333,6 +328,22 @@ is a symbolic link, then .BR open () fails regardless of where the symbolic link points to. +In general, the behavior of +.B O_EXCL +is undefined if it is used without +.BR O_CREAT . +There is one exception: on Linux 2.6 and later, +.B O_EXCL +can be used without +.B O_CREAT +if +.I pathname +refers to a block device. +If the block device is in use by the system (e.g., mounted), +.BR open () +fails with the error +.BR EBUSY . + On NFS, .B O_EXCL is only supported when using NFSv3 or later on kernel 2.6 or later. diff --git a/original/man2/pread.2 b/original/man2/pread.2 index a41df984..6966b311 100644 --- a/original/man2/pread.2 +++ b/original/man2/pread.2 @@ -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 PREAD 2 2010-09-26 "Linux" "Linux Programmer's Manual" +.TH PREAD 2 2010-11-21 "Linux" "Linux Programmer's Manual" .SH NAME pread, pwrite \- read from or write to a file descriptor at a given offset .SH SYNOPSIS @@ -112,7 +112,24 @@ C library support (including emulation using on older kernels without the system calls) was added in glibc 2.1. .SH "CONFORMING TO" POSIX.1-2001. +.SH NOTES +On Linux, the underlying system calls were renamed +in kernel 2.6: +.BR pread () +became +.BR pread64 (), +and +.BR pwrite () +became +.BR pwrite64 (). +The system call numbers remained the same. +The glibc +.BR pread () +and +.BR pwrite () +wrapper functions transparently deal with the change. .SH "SEE ALSO" .BR lseek (2), .BR read (2), +.BR readv (2), .BR write (2) diff --git a/original/man2/preadv.2 b/original/man2/preadv.2 new file mode 100644 index 00000000..54e3384e --- /dev/null +++ b/original/man2/preadv.2 @@ -0,0 +1 @@ +.so man2/readv.2 diff --git a/original/man2/pwritev.2 b/original/man2/pwritev.2 new file mode 100644 index 00000000..54e3384e --- /dev/null +++ b/original/man2/pwritev.2 @@ -0,0 +1 @@ +.so man2/readv.2 diff --git a/original/man2/readv.2 b/original/man2/readv.2 index 8d5ab233..709c73c3 100644 --- a/original/man2/readv.2 +++ b/original/man2/readv.2 @@ -1,4 +1,4 @@ -.\" Copyright (C) 2007 Michael Kerrisk +.\" Copyright (C) 2007, 2010 Michael Kerrisk .\" and Copyright (c) 1993 by Thomas Koenig (ig25@rz.uni-karlsruhe.de) .\" .\" Permission is granted to make and distribute verbatim copies of this @@ -25,10 +25,11 @@ .\" Merged readv.[23], 2002-10-17, aeb .\" 2007-04-30 mtk, A fairly major rewrite to fix errors and .\" add more details. +.\" 2010-11-16, mtk, Added documentation of preadv() and pwritev() .\" -.TH READV 2 2002-10-17 "Linux" "Linux Programmer's Manual" +.TH READV 2 2010-11-17 "Linux" "Linux Programmer's Manual" .SH NAME -readv, writev \- read or write data into multiple buffers +readv, writev, preadv, pwritev \- read or write data into multiple buffers .SH SYNOPSIS .nf .B #include @@ -36,11 +37,26 @@ readv, writev \- read or write data into multiple buffers .BI "ssize_t readv(int " fd ", const struct iovec *" iov ", int " iovcnt ); .sp .BI "ssize_t writev(int " fd ", const struct iovec *" iov ", int " iovcnt ); +.sp +.BI "ssize_t preadv(int " fd ", const struct iovec *" iov ", int " iovcnt , +.BI " off_t " offset ); +.sp +.BI "ssize_t pwritev(int " fd ", const struct iovec *" iov ", int " iovcnt , +.BI " off_t " offset ); .fi +.sp +.in -4n +Feature Test Macro Requirements for glibc (see +.BR feature_test_macros (7)): +.in +.sp +.BR preadv (), +.BR pwritev (): +_BSD_SOURCE .SH DESCRIPTION The .BR readv () -function reads +system call reads .I iovcnt buffers from the file associated with the file descriptor .I fd @@ -50,7 +66,7 @@ into the buffers described by .PP The .BR writev () -function writes +system call writes .I iovcnt buffers of data described by .I iov @@ -79,13 +95,13 @@ struct iovec { .PP The .BR readv () -function works just like +system call works just like .BR read (2) except that multiple buffers are filled. .PP The .BR writev () -function works just like +system call works just like .BR write (2) except that multiple buffers are written out. .PP @@ -125,19 +141,60 @@ regardless of read operations performed in other threads or processes that have file descriptors referring to the same open file description (see .BR open (2)). +.SS preadv() and pwritev() +The +.BR preadv () +system call combines the functionality of +.BR readv () +and +.BR pread (2). +It performs the same task as +.BR readv (), +but adds a fourth argument, +.IR offset , +which specifies the file offset at which the input operation +is to be performed. + +The +.BR pwritev () +system call combines the functionality of +.BR writev () +and +.BR pwrite (2). +It performs the same task as +.BR writev (), +but adds a fourth argument, +.IR offset , +which specifies the file offset at which the output operation +is to be performed. + +The file offset is not changed by these system calls. +The file referred to by +.I fd +must be capable of seeking. .SH "RETURN VALUE" -On success, the +On success, .BR readv () -function returns the number of bytes read; the +and +.BR preadv () +return the number of bytes read; .BR writev () -function returns the number of bytes written. +and +.BR pwritev () +return the number of bytes written. On error, \-1 is returned, and \fIerrno\fP is set appropriately. .SH ERRORS The errors are as given for .BR read (2) and .BR write (2). -Additionally the following error is defined: +Furthermore, +.BR preadv () +and +.BR pwritev () +can also fail for the same reasons as +.BR lseek (2). +Additionally, the following error is defined: .TP .B EINVAL The sum of the @@ -147,16 +204,23 @@ values overflows an value. Or, the vector count \fIiovcnt\fP is less than zero or greater than the permitted maximum. -.SH "CONFORMING TO" -4.4BSD (the -.BR readv () +.SH VERSIONS +.BR preadv () and -.BR writev () -functions first appeared in 4.2BSD), POSIX.1-2001. +.BR pwritev () +first appeared in Linux 2.6.30; library support was added in glibc 2.10. +.SH "CONFORMING TO" +.BR readv (), +.BR writev (): +4.4BSD (these system calls first appeared in 4.2BSD), POSIX.1-2001. Linux libc5 used \fIsize_t\fP as the type of the \fIiovcnt\fP argument, -and \fIint\fP as return type for these functions. +and \fIint\fP as the return type. .\" The readv/writev system calls were buggy before Linux 1.3.40. .\" (Says release.libc.) + +.BR preadv (), +.BR pwritev (): +nonstandard, but present also on the modern BSDs. .SH NOTES .SS Linux Notes POSIX.1-2001 allows an implementation to place a limit on @@ -190,7 +254,7 @@ The wrapper function for performs the analogous task using a temporary buffer and a call to .BR write (2). .SH BUGS -It is not advisable to mix calls to functions like +It is not advisable to mix calls to .BR readv () or .BR writev (), @@ -216,5 +280,6 @@ nwritten = writev(STDOUT_FILENO, iov, 2); .fi .in .SH "SEE ALSO" +.BR pread (2), .BR read (2), .BR write (2) diff --git a/original/man2/sendfile.2 b/original/man2/sendfile.2 index 12d4d3c7..9dc7466e 100644 --- a/original/man2/sendfile.2 +++ b/original/man2/sendfile.2 @@ -12,7 +12,7 @@ .\" .\" 2005-03-31 Martin Pool mmap() improvements .\" -.TH SENDFILE 2 2010-02-15 "Linux" "Linux Programmer's Manual" +.TH SENDFILE 2 2010-12-03 "Linux" "Linux Programmer's Manual" .SH NAME sendfile \- transfer data between file descriptors .SH SYNOPSIS @@ -168,6 +168,18 @@ In Linux 2.4 and earlier, could refer to a regular file, and .BR sendfile () changed the current offset of that file. + +The original Linux +.BR sendfile () +system call was not designed to handle large file offsets. +Consequently, Linux 2.4 added +.BR sendfile64 (), +with a wider type for the +.I offset +argument. +The glibc +.BR sendfile () +wrapper function transparently deals with the kernel differences. .SH "SEE ALSO" .BR mmap (2), .BR open (2), diff --git a/original/man2/setfsgid.2 b/original/man2/setfsgid.2 index fd03a7d3..a5f789a5 100644 --- a/original/man2/setfsgid.2 +++ b/original/man2/setfsgid.2 @@ -26,7 +26,7 @@ .\" Modified, 27 May 2004, Michael Kerrisk .\" Added notes on capability requirements .\" -.TH SETFSGID 2 2008-12-05 "Linux" "Linux Programmer's Manual" +.TH SETFSGID 2 2010-11-22 "Linux" "Linux Programmer's Manual" .SH NAME setfsgid \- set group identity used for file system checks .SH SYNOPSIS @@ -89,6 +89,16 @@ the system call. Note that at the time this system call was introduced, a process could send a signal to a process with the same effective user ID. Today signal permission handling is slightly different. + +The original Linux +.BR setfsgid () +system call supported only 16-bit group IDs. +Subsequently, Linux 2.4 added +.BR setfsgid32 () +supporting 32-bit IDs. +The glibc +.BR setfsgid () +wrapper function transparently deals with the variation across kernel versions. .SH BUGS No error messages of any kind are returned to the caller. At the very diff --git a/original/man2/setfsuid.2 b/original/man2/setfsuid.2 index 737fc9cc..cda8e224 100644 --- a/original/man2/setfsuid.2 +++ b/original/man2/setfsuid.2 @@ -26,7 +26,7 @@ .\" Modified, 27 May 2004, Michael Kerrisk .\" Added notes on capability requirements .\" -.TH SETFSUID 2 2008-12-05 "Linux" "Linux Programmer's Manual" +.TH SETFSUID 2 2010-11-22 "Linux" "Linux Programmer's Manual" .SH NAME setfsuid \- set user identity used for file system checks .SH SYNOPSIS @@ -89,6 +89,16 @@ the system call. Note that at the time this system call was introduced, a process could send a signal to a process with the same effective user ID. Today signal permission handling is slightly different. + +The original Linux +.BR setfsuid () +system call supported only 16-bit user IDs. +Subsequently, Linux 2.4 added +.BR setfsuid32 () +supporting 32-bit IDs. +The glibc +.BR setfsuid () +wrapper function transparently deals with the variation across kernel versions. .SH BUGS No error messages of any kind are returned to the caller. At the very diff --git a/original/man2/setgid.2 b/original/man2/setgid.2 index 662e439c..59384725 100644 --- a/original/man2/setgid.2 +++ b/original/man2/setgid.2 @@ -24,7 +24,7 @@ .\" Modified 1997-01-31 by Eric S. Raymond .\" Modified 2002-03-09 by aeb .\" -.TH SETGID 2 2009-10-17 "Linux" "Linux Programmer's Manual" +.TH SETGID 2 2010-11-22 "Linux" "Linux Programmer's Manual" .SH NAME setgid \- set group identity .SH SYNOPSIS @@ -61,6 +61,16 @@ The calling process is not privileged (does not have the .I gid does not match the real group ID or saved set-group-ID of the calling process. +.SH NOTES +The original Linux +.BR setgid () +system call supported only 16-bit group IDs. +Subsequently, Linux 2.4 added +.BR setgid32 () +supporting 32-bit IDs. +The glibc +.BR setgid () +wrapper function transparently deals with the variation across kernel versions. .SH "CONFORMING TO" SVr4, POSIX.1-2001. .SH "SEE ALSO" diff --git a/original/man2/setresuid.2 b/original/man2/setresuid.2 index 20f02274..3dbcbf3a 100644 --- a/original/man2/setresuid.2 +++ b/original/man2/setresuid.2 @@ -23,7 +23,7 @@ .\" the source, must acknowledge the copyright and authors of this work. .\" .\" Modified, 2003-05-26, Michael Kerrisk, -.TH SETRESUID 2 2007-07-26 "Linux" "Linux Programmer's Manual" +.TH SETRESUID 2 2010-11-22 "Linux" "Linux Programmer's Manual" .SH NAME setresuid, setresgid \- set real, effective and saved user or group ID .SH SYNOPSIS @@ -84,9 +84,25 @@ These calls are available under Linux since Linux 2.1.44. These calls are nonstandard; they also appear on HP-UX and some of the BSDs. .SH NOTES -Under HP-UX and FreeBSD the prototype is found in +Under HP-UX and FreeBSD, the prototype is found in .IR . Under Linux the prototype is provided by glibc since version 2.3.2. + +The original Linux +.BR setresuid () +and +.BR setresgid () +system calls supported only 16-bit user and group IDs. +Subsequently, Linux 2.4 added +.BR setresuid32 () +and +.BR setresgid32 (), +supporting 32-bit IDs. +The glibc +.BR setresuid () +and +.BR setresgid () +wrapper functions transparently deal with the variations across kernel versions. .SH "SEE ALSO" .BR getresuid (2), .BR getuid (2), diff --git a/original/man2/setreuid.2 b/original/man2/setreuid.2 index 7e561312..3b61f461 100644 --- a/original/man2/setreuid.2 +++ b/original/man2/setreuid.2 @@ -40,7 +40,7 @@ .\" 2004-07-04 by aeb .\" 2004-05-27 by Michael Kerrisk .\" -.TH SETREUID 2 2010-09-20 "Linux" "Linux Programmer's Manual" +.TH SETREUID 2 2010-11-22 "Linux" "Linux Programmer's Manual" .SH NAME setreuid, setregid \- set real and/or effective user or group ID .SH SYNOPSIS @@ -138,6 +138,22 @@ across implementations. POSIX.1 makes no specification about the effect of these calls on the saved set-user-ID and saved set-group-ID. + +The original Linux +.BR setreuid () +and +.BR setregid () +system calls supported only 16-bit user and group IDs. +Subsequently, Linux 2.4 added +.BR setreuid32 () +and +.BR setregid32 (), +supporting 32-bit IDs. +The glibc +.BR setreuid () +and +.BR setregid () +wrapper functions transparently deal with the variations across kernel versions. .SH "SEE ALSO" .BR getgid (2), .BR getuid (2), diff --git a/original/man2/setuid.2 b/original/man2/setuid.2 index 1095c3ac..0a1e1a1d 100644 --- a/original/man2/setuid.2 +++ b/original/man2/setuid.2 @@ -25,7 +25,7 @@ .\" , aeb 970616. .\" Modified, 27 May 2004, Michael Kerrisk .\" Added notes on capability requirements -.TH SETUID 2 2010-02-21 "Linux" "Linux Programmer's Manual" +.TH SETUID 2 2010-11-22 "Linux" "Linux Programmer's Manual" .SH NAME setuid \- set user identity .SH SYNOPSIS @@ -93,8 +93,7 @@ Not quite compatible with the 4.4BSD call, which sets all of the real, saved, and effective user IDs. .\" SVr4 documents an additional EINVAL error condition. .SH NOTES -.SS Linux Notes -Linux has the concept of file system user ID, normally equal to the +Linux has the concept of the file system user ID, normally equal to the effective user ID. The .BR setuid () @@ -104,8 +103,18 @@ See .PP If .I uid -is different from the old effective uid, the process will +is different from the old effective UID, the process will be forbidden from leaving core dumps. + +The original Linux +.BR setuid () +system call supported only 16-bit user IDs. +Subsequently, Linux 2.4 added +.BR setuid32 () +supporting 32-bit IDs. +The glibc +.BR setuid () +wrapper function transparently deals with the variation across kernel versions. .SH "SEE ALSO" .BR getuid (2), .BR seteuid (2), diff --git a/original/man2/sigqueue.2 b/original/man2/sigqueue.2 index cefd5940..6cfa6467 100644 --- a/original/man2/sigqueue.2 +++ b/original/man2/sigqueue.2 @@ -147,5 +147,6 @@ info.si_value = val; /* argument supplied to sigqueue() */ .BR kill (2), .BR sigaction (2), .BR signal (2), +.BR pthread_sigqueue (3), .BR sigwait (3), .BR signal (7) diff --git a/original/man2/stat.2 b/original/man2/stat.2 index 05f9c92d..1aadf321 100644 --- a/original/man2/stat.2 +++ b/original/man2/stat.2 @@ -37,7 +37,7 @@ .\" 2007-06-08 mtk: Added example program .\" 2007-07-05 mtk: Added details on underlying system call interfaces .\" -.TH STAT 2 2010-09-26 "Linux" "Linux Programmer's Manual" +.TH STAT 2 2010-12-03 "Linux" "Linux Programmer's Manual" .SH NAME stat, fstat, lstat \- get file status .SH SYNOPSIS @@ -349,7 +349,7 @@ This can occur when an application compiled on a 32-bit platform without calls .BR stat () on a file whose size exceeds -.I (2<<31)-1 +.I (1<<31)-1 bits. .SH "CONFORMING TO" These system calls conform to SVr4, 4.3BSD, POSIX.1-2001. diff --git a/original/man2/statfs.2 b/original/man2/statfs.2 index f6e3149b..b292374b 100644 --- a/original/man2/statfs.2 +++ b/original/man2/statfs.2 @@ -23,7 +23,7 @@ .\" Modified 2003-08-17 by Walter Harms .\" Modified 2004-06-23 by Michael Kerrisk .\" -.TH STATFS 2 2010-09-04 "Linux" "Linux Programmer's Manual" +.TH STATFS 2 2010-11-21 "Linux" "Linux Programmer's Manual" .SH NAME statfs, fstatfs \- get file system statistics .SH SYNOPSIS @@ -192,13 +192,27 @@ The Linux was inspired by the 4.4BSD one (but they do not use the same structure). .SH NOTES -The kernel has system calls -.BR statfs (), -.BR fstatfs (), -.BR statfs64 (), +The original Linux +.BR statfs () +and +.BR fstatfs () +system calls were not designed with extremely large file sizes in mind. +Subsequently, Linux 2.6 +added new +.BR statfs64 () and .BR fstatfs64 () -to support this library call. +system calls that employ a new structure, +.IR statfs64 . +The new structure contains the same fields as the original +.I statfs +structure, but the sizes of various fields are increased, +to accommodate large file sizes. +The glibc +.BR statfs () +and +.BR fstatfs () +wrapper functions transparently deal with the kernel differences. Some systems only have \fI\fP, other systems also have \fI\fP, where the former includes the latter. diff --git a/original/man2/swapon.2 b/original/man2/swapon.2 index 656139c6..a4b34f52 100644 --- a/original/man2/swapon.2 +++ b/original/man2/swapon.2 @@ -34,7 +34,7 @@ .\" 2007-06-22 Ivana Varekova , mtk .\" Update text describing limit on number of swap files. .\" -.TH SWAPON 2 2010-06-15 "Linux" "Linux Programmer's Manual" +.TH SWAPON 2 2010-11-15 "Linux" "Linux Programmer's Manual" .SH NAME swapon, swapoff \- start/stop swapping to file/device .SH SYNOPSIS @@ -55,15 +55,12 @@ sets the swap area to the file or block device specified by stops swapping to the file or block device specified by .IR path . .PP +If the +.B SWAP_FLAG_PREFER +flag is specified in the .BR swapon () -takes a -.I swapflags -argument. -If .I swapflags -has the -.B SWAP_FLAG_PREFER -bit turned on, the new swap area will have a higher priority than default. +argument, the new swap area will have a higher priority than default. The priority is encoded within .I swapflags as: @@ -72,6 +69,17 @@ as: .I " (prio << SWAP_FLAG_PRIO_SHIFT) & SWAP_FLAG_PRIO_MASK" .br .PP +If the +.B SWAP_FLAG_DISCARD +flag is specified in the +.BR swapon () +.I swapflags +argument, freed swap pages will be discarded before they are reused, +if the swap device supports the discard or trim operation. +(This may improve performance on some Solid State Devices, +but often it does not.) +See also NOTES. +.PP These functions may only be used by a privileged process (one having the .B CAP_SYS_ADMIN capability). @@ -169,6 +177,17 @@ Since kernel 2.6.32, the limit is further decreased by 1 if the kernel is built with the .B CONFIG_MEMORY_FAILURE option. + +Discard of swap pages was introduced in kernel 2.6.29, +then made conditional +on the +.B SWAP_FLAG_DISCARD +flag in kernel 2.6.36, +.\" To be precise: 2.6.35.5 +which still discards the +entire swap area when +.BR swapon () +is called, even if that flag bit is not set. .SH "SEE ALSO" .BR mkswap (8), .BR swapoff (8), diff --git a/original/man2/truncate.2 b/original/man2/truncate.2 index 3e237ce4..fb388b29 100644 --- a/original/man2/truncate.2 +++ b/original/man2/truncate.2 @@ -38,7 +38,7 @@ .\" Modified 2002-04-06 by Andries Brouwer .\" Modified 2004-06-23 by Michael Kerrisk .\" -.TH TRUNCATE 2 2010-10-07 "Linux" "Linux Programmer's Manual" +.TH TRUNCATE 2 2010-11-21 "Linux" "Linux Programmer's Manual" .SH NAME truncate, ftruncate \- truncate a file to a specified length .SH SYNOPSIS @@ -207,7 +207,7 @@ does not reference a regular file. .\" .BR ftruncate () .\" an additional EAGAIN error condition. .SH NOTES -The above description is for XSI-compliant systems. +The details in DESCRIPTION are for XSI-compliant systems. For non-XSI-compliant systems, the POSIX standard allows two behaviors for .BR ftruncate () @@ -227,6 +227,20 @@ and to be used to extend a file beyond its current length: a notable example on Linux is VFAT. .\" At the very least: OSF/1, Solaris 7, and FreeBSD conform, mtk, Jan 2002 + +The original Linux +.BR truncate () +and +.BR ftruncate () +system calls were not designed to handle large file offsets. +Consequently, Linux 2.4 added +.BR truncate64 () +and +.BR ftruncate64 () +system calls that handle large files. +However, these details can be ignored by applications using glibc, whose +wrapper functions transparently employ the more recent system calls +where they are available. .SH BUGS A header file bug in glibc 2.12 meant that the minimum value of .\" http://sourceware.org/bugzilla/show_bug.cgi?id=12037 diff --git a/original/man3/ftok.3 b/original/man3/ftok.3 index b8b43f3a..2e2e9d4c 100644 --- a/original/man3/ftok.3 +++ b/original/man3/ftok.3 @@ -57,7 +57,7 @@ is used. The value returned should be different when the (simultaneously existing) files or the project IDs differ. .SH "RETURN VALUE" -On success the generated +On success, the generated .I key_t value is returned. On failure \-1 is returned, with diff --git a/original/man3/lio_listio.3 b/original/man3/lio_listio.3 index 1e9c477b..a596eb10 100644 --- a/original/man3/lio_listio.3 +++ b/original/man3/lio_listio.3 @@ -216,7 +216,6 @@ Simultaneous I/O operations specifying the same .I aiocb structure produce undefined results. .SH "SEE ALSO" -.\" FIXME Add SEE ALSO for this page to the following pages. .BR aio_cancel (3), .BR aio_error (3), .BR aio_fsync (3), diff --git a/original/man3/memcpy.3 b/original/man3/memcpy.3 index 0c3baf1f..6564e806 100644 --- a/original/man3/memcpy.3 +++ b/original/man3/memcpy.3 @@ -25,7 +25,7 @@ .\" Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991) .\" 386BSD man pages .\" Modified Sun Jul 25 10:41:09 1993 by Rik Faith (faith@cs.unc.edu) -.TH MEMCPY 3 1993-04-10 "" "Linux Programmer's Manual" +.TH MEMCPY 3 2010-11-15 "" "Linux Programmer's Manual" .SH NAME memcpy \- copy memory area .SH SYNOPSIS @@ -39,7 +39,7 @@ The .BR memcpy () function copies \fIn\fP bytes from memory area \fIsrc\fP to memory area \fIdest\fP. -The memory areas should not overlap. +The memory areas must not overlap. Use .BR memmove (3) if the memory areas do overlap. diff --git a/original/man3/pthread_sigqueue.3 b/original/man3/pthread_sigqueue.3 new file mode 100644 index 00000000..c4faa407 --- /dev/null +++ b/original/man3/pthread_sigqueue.3 @@ -0,0 +1,102 @@ +.\" Copyright (c) 2010 Michael Kerrisk, +.\" +.\" 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. +.\" +.TH PTHREAD_SIGQUEUE 3 2010-11-16 "Linux" "Linux Programmer's Manual" +.SH NAME +pthread_sigqueue \- queue a signal and data to a thread +.SH SYNOPSIS +.nf +.B #include + +.BI "int pthread_sigqueue(pthread_t *" thread ", int " sig , +.BI " const union sigval " value ); +.fi +.sp +Compile and link with \fI\-pthread\fP. +.sp +.in -4n +Feature Test Macro Requirements for glibc (see +.BR feature_test_macros (7)): +.in +.sp +.BR pthread_sigqueue (): +_GNU_SOURCE +.SH DESCRIPTION +The +.BR pthread_sigqueue () +function performs a similar task to +.BR sigqueue (2), +but, rather than sending a signal to another process, +it sends a signal to another thread in the same process as the +calling thread. + +The +.I thread +argument is the ID of another thread in the same process as the caller. +The +.I sig +argument specifies the signal to be sent. +The +.I value +argument specifies data to accompany the signal; see +.BR sigqueue (2) +for details. +.SH RETURN VALUE +On success, +.BR pthread_create () +returns 0; +on error, it returns an error number. +.SH ERRORS +.TP +.B EAGAIN +The limit of signals which may be queued has been reached. +(See +.BR signal (7) +for further information.) +.TP +.B EINVAL +.I sig +was invalid. +.TP +.B ENOSYS +.BR pthread_sigqueue () +is not supported on this system. +.TP +.B ESRCH +.I thread +is not valid. +.SH VERSIONS +The +.BR pthread_sigqueue () +function first appeared in glibc 2.11. +It is implemented using the Linux-specific +.BR rt_tgsigqueinfo () +system call, which was added in Linux 2.6.31. +.SH CONFORMING TO +This function is a GNU extension. +.SH SEE ALSO +.BR sigaction (2), +.BR sigqueue (2), +.BR sigwait (2), +.BR pthread_sigmask (3), +.BR pthreads (7), +.BR signal (7) diff --git a/original/man3/usleep.3 b/original/man3/usleep.3 index b4b70bc2..c3f77cf8 100644 --- a/original/man3/usleep.3 +++ b/original/man3/usleep.3 @@ -28,7 +28,7 @@ .\" Modified 2001-04-01 by aeb .\" Modified 2003-07-23 by aeb .\" -.TH USLEEP 3 2010-09-20 "" "Linux Programmer's Manual" +.TH USLEEP 3 2010-12-03 "" "Linux Programmer's Manual" .SH NAME usleep \- suspend execution for microsecond intervals .SH SYNOPSIS @@ -65,7 +65,7 @@ _XOPEN_SOURCE\ &&\ _XOPEN_SOURCE_EXTENDED .SH DESCRIPTION The .BR usleep () -function suspends execution of the calling process for +function suspends execution of the calling thread for (at least) \fIusec\fP microseconds. The sleep may be lengthened slightly by any system activity or by the time spent processing the call or by the diff --git a/original/man5/core.5 b/original/man5/core.5 index f890799e..a64b8209 100644 --- a/original/man5/core.5 +++ b/original/man5/core.5 @@ -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-27 "Linux" "Linux Programmer's Manual" +.TH CORE 5 2010-11-15 "Linux" "Linux Programmer's Manual" .SH NAME core \- core dump file .SH DESCRIPTION @@ -308,8 +308,8 @@ The following shell session demonstrates the use of this program .RB "$" " cc \-o core_pattern_pipe_test core_pattern_pipe_test.c" .RB "$" " su" Password: -.RB "#" " echo \(aq|$PWD/core_pattern_pipe_test %p \ -UID=%u GID=%g sig=%s\(aq > \e" +.RB "#" " echo \(dq|$PWD/core_pattern_pipe_test %p \ +UID=%u GID=%g sig=%s\(dq > \e" .B " /proc/sys/kernel/core_pattern" .RB "#" " exit" .RB "$" " sleep 100" diff --git a/original/man5/proc.5 b/original/man5/proc.5 index 7e656626..7c5ca4e3 100644 --- a/original/man5/proc.5 +++ b/original/man5/proc.5 @@ -2563,7 +2563,7 @@ Select either according to your policy of failover. .\" 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 +Higher values increase aggressiveness, lower values decrease aggressiveness. The default value is 60. .TP diff --git a/original/man7/inotify.7 b/original/man7/inotify.7 index feaa5a94..ddeb5e56 100644 --- a/original/man7/inotify.7 +++ b/original/man7/inotify.7 @@ -254,7 +254,7 @@ when calling .BR IN_DONT_FOLLOW " (since Linux 2.6.15)" Don't dereference \fIpathname\fP if it is a symbolic link. .TP -.B IN_EXCL_UNLINK " (since Linux 2.6.36)" +.BR IN_EXCL_UNLINK " (since Linux 2.6.36)" .\" commit 8c1934c8d70b22ca8333b216aec6c7d09fdbd6a6 By default, when watching events on the children of a directory, events are generated for children even after they have been unlinked diff --git a/original/man7/mdoc.7 b/original/man7/mdoc.7 index 623c612a..4ed6f4d3 100644 --- a/original/man7/mdoc.7 +++ b/original/man7/mdoc.7 @@ -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.31 of the Linux +This page is part of release 3.32 of the Linux .Em man-pages project. A description of the project, diff --git a/original/man7/mdoc.samples.7 b/original/man7/mdoc.samples.7 index 250ee83f..c08892b8 100644 --- a/original/man7/mdoc.samples.7 +++ b/original/man7/mdoc.samples.7 @@ -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.31 of the Linux +This page is part of release 3.32 of the Linux .Em man-pages project. A description of the project, diff --git a/original/man7/pthreads.7 b/original/man7/pthreads.7 index 9faf84db..c5c55931 100644 --- a/original/man7/pthreads.7 +++ b/original/man7/pthreads.7 @@ -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 PTHREADS 7 2008-11-18 "Linux" "Linux Programmer's Manual" +.TH PTHREADS 7 2010-11-14 "Linux" "Linux Programmer's Manual" .SH NAME pthreads \- POSIX threads .SH DESCRIPTION @@ -231,6 +231,21 @@ wcstombs() wctomb() .fi .in +.SS Async-cancel-safe functions +An async-cancel-safe function is one that can be safely called +in an application where asynchronous cancelability is enabled (see +.BR pthread_setcancelstate (3)). + +Only the following functions are required to be async-cancel-safe by +POSIX.1-2001 and POSIX.1-2008: +.in +4n +.nf + +pthread_cancel() +pthread_setcancelstate() +pthread_setcanceltype() +.fi +.in .SS Cancellation Points POSIX.1 specifies that certain functions must, and certain other functions may, be cancellation points. @@ -876,6 +891,8 @@ bash$ $( LD_ASSUME_KERNEL=2.2.5 ldd /bin/ls | grep libc.so | \\ .in .fi .SH "SEE ALSO" +.ad l +.nh .BR clone (2), .BR futex (2), .BR gettid (2), @@ -904,5 +921,6 @@ and various Pthreads manual pages, for example: .BR pthread_setcanceltype (3), .BR pthread_setspecific (3), .BR pthread_sigmask (3), +.BR pthread_sigqueue (3), and .BR pthread_testcancel (3) diff --git a/original/man7/signal.7 b/original/man7/signal.7 index cd55cc96..c4516c24 100644 --- a/original/man7/signal.7 +++ b/original/man7/signal.7 @@ -865,6 +865,7 @@ signal 29 is .BR bsd_signal (3), .BR longjmp (3), .BR raise (3), +.BR pthread_sigqueue (3), .BR sigset (3), .BR sigsetops (3), .BR sigvec (3), diff --git a/original/man7/unix.7 b/original/man7/unix.7 index bab5c8b6..b53328b3 100644 --- a/original/man7/unix.7 +++ b/original/man7/unix.7 @@ -12,7 +12,7 @@ .\" address that can appear in the sockaddr_un structure: pathname, .\" unnamed, and abstract. .\" -.TH UNIX 7 2010-10-10 "Linux" "Linux Programmer's Manual" +.TH UNIX 7 2010-11-15 "Linux" "Linux Programmer's Manual" .SH NAME unix, AF_UNIX, AF_LOCAL \- Sockets for local interprocess communication @@ -315,14 +315,14 @@ defined in .SH ERRORS .TP .B EADDRINUSE -Selected local address is already taken or file system socket +The specified local address is already in use or the file system socket object already exists. .TP .B ECONNREFUSED +The remote address specified by .BR connect (2) -called with a socket object that isn't listening. -This can happen when -the remote socket does not exist or the filename is not a socket. +was not a listening socket. +This error can also occur if the target filename is not a socket. .TP .B ECONNRESET Remote socket was unexpectedly closed. @@ -332,10 +332,11 @@ User memory address was not valid. .TP .B EINVAL Invalid argument passed. -A common cause is the missing setting of AF_UNIX -in the +A common cause is that the value +.B AF_UNIX +was not specified in the .I sun_type -field of passed addresses or the socket being in an +field of passed addresses, or the socket was in an invalid state for the applied operation. .TP .B EISCONN @@ -343,6 +344,11 @@ invalid state for the applied operation. called on an already connected socket or a target address was specified on a connected socket. .TP +.B ENOENT +The pathname in the remote address specified to +.BR connect () +did not exist. +.TP .B ENOMEM Out of memory. .TP @@ -370,12 +376,13 @@ or .BR recvmsg (2). .TP .B EPROTONOSUPPORT -Passed protocol is not AF_UNIX. +Passed protocol is not +.BR AF_UNIX . .TP .B EPROTOTYPE Remote socket does not match the local socket type .RB ( SOCK_DGRAM -vs. +versus .BR SOCK_STREAM ) .TP .B ESOCKTNOSUPPORT diff --git a/translation_list b/translation_list index 7a9bb729..5e10b9cb 100644 --- a/translation_list +++ b/translation_list @@ -1,2084 +1,2087 @@ -○:LDP man-pages:3.31:2007/11/15:intro:1:2008/02/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2000/10/30:ldd:1:2002/02/14::ysato@h4.dion.ne.jp:Yuichi SATO: -○:LDP man-pages:3.31:2008/11/14:time:1:2008/11/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:_Exit:2:_exit:2: -ï¼ :LDP man-pages:3.31:2010/11/01:__clone2:2:clone:2: -○:LDP man-pages:3.31:2010/09/20:_exit:2:2001/12/14::ysato@h4.dion.ne.jp:Yuichi SATO: -ï¼ :LDP man-pages:3.31:1995/06/10:_llseek:2:llseek:2: -ï¼ :LDP man-pages:3.31:2010/08/31:_newselect:2:select:2: -○:LDP man-pages:3.31:2007/12/19:_syscall:2:2008/02/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2008/11/20:_sysctl:2:sysctl:2: -○:LDP man-pages:3.31:2010/09/10:accept:2:2008/12/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/10:accept4:2:accept:2: -☆:LDP man-pages:3.29=>3.31:2010/10/24:access:2:2007/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2008/06/16:acct:2:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: -×:LDP man-pages:3.31:2010/02/25:add_key:2::::: -○:LDP man-pages:3.31:2004/05/27:adjtimex:2:2006/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2007/07/05:afs_syscall:2:unimplemented:2: -○:LDP man-pages:3.31:2008/06/12:alarm:2:1997/02/22::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -○:LDP man-pages:3.31:2007/05/31:alloc_hugepages:2:2007/06/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2007/12/26:arch_prctl:2:2005/11/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/10/09:arm_fadvise:2:posix_fadvise:2: -ï¼ :LDP man-pages:3.31:2010/10/09:arm_fadvise64_64:2:posix_fadvise:2: -ï¼ :LDP man-pages:3.31:2010/10/09:arm_sync_file_range:2:sync_file_range:2: -○:LDP man-pages:3.31:2004/06/17:bdflush:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.31:2007/12/28:bind:2:2007/06/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2007/07/05:break:2:unimplemented:2: -○:LDP man-pages:3.31:2010/09/20:brk:2:2007/02/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2007/05/26:cacheflush:2:2005/10/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/09/20:capget:2:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:capset:2:capget:2: -○:LDP man-pages:3.31:2010/09/26:chdir:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.31:2010/09/26:chmod:2:2005/01/14::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.31:2010/09/26:chown:2:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: -ï¼ :LDP man-pages:3.31:2010/09/26:chown32:2:chown:2: -○:LDP man-pages:3.31:2010/09/20:chroot:2:2005/01/14::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.31:2010/02/03:clock_getres:2:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: -ï¼ :LDP man-pages:3.31:2010/02/03:clock_gettime:2:clock_getres:2: -○:LDP man-pages:3.31:2010/09/10:clock_nanosleep:2:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/02/03:clock_settime:2:clock_getres:2: -○:LDP man-pages:3.31:2010/11/01:clone:2:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/11/01:clone2:2:clone:2: -○:LDP man-pages:3.31:2007/12/28:close:2:2007/10/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2008/12/03:connect:2:2005/10/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/10:creat:2:open:2: -○:LDP man-pages:3.31:2007/06/03:create_module:2:2006/07/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:0000/00/00:delete_module:2:2006/07/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/09/10:dup:2:2005/09/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/10:dup2:2:dup:2: -ï¼ :LDP man-pages:3.31:2010/09/10:dup3:2:dup:2: -○:LDP man-pages:3.31:2009/01/17:epoll_create:2:2009/03/14::argrath@ub32.org:Kentaro Shirakata: -ï¼ :LDP man-pages:3.31:2009/01/17:epoll_create1:2:epoll_create:2: -○:LDP man-pages:3.31:2010/08/29:epoll_ctl:2:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2009/01/17:epoll_pwait:2:epoll_wait:2: -○:LDP man-pages:3.31:2009/01/17:epoll_wait:2:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -☆:LDP man-pages:3.25=>3.31:2010/08/30:eventfd:2:2008/11/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/08/30:eventfd2:2:eventfd:2: -○:LDP man-pages:3.31:2010/01/06:execve:2:2008/04/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:exit:2:_exit:2: -○:LDP man-pages:3.31:2008/11/27:exit_group:2:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: -☆:LDP man-pages:3.29=>3.31:2010/10/24:faccessat:2:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/10/09:fadvise64:2:posix_fadvise:2: -ï¼ :LDP man-pages:3.31:2010/10/09:fadvise64_64:2:posix_fadvise:2: -○:LDP man-pages:3.31:2010/09/10:fallocate:2:2007/10/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/26:fchdir:2:chdir:2: -ï¼ :LDP man-pages:3.31:2010/09/26:fchmod:2:chmod:2: -○:LDP man-pages:3.31:2009/12/13:fchmodat:2:2006/12/28::ysato444@yahoo.co.jp:Yuichi SATO: -ï¼ :LDP man-pages:3.31:2010/09/26:fchown:2:chown:2: -ï¼ :LDP man-pages:3.31:2010/09/26:fchown32:2:fchown:2: -○:LDP man-pages:3.31:2009/12/13:fchownat:2:2006/12/28::ysato444@yahoo.co.jp:Yuichi SATO: -☆:LDP man-pages:3.24=>3.31:2010/11/01:fcntl:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/11/01:fcntl64:2:fcntl:2: -ï¼ :LDP man-pages:3.31:2008/11/07:fdatasync:2:fsync:2: -ï¼ :LDP man-pages:3.31:2001/12/01:fgetxattr:2:getxattr:2: -ï¼ :LDP man-pages:3.31:2001/12/01:flistxattr:2:listxattr:2: -○:LDP man-pages:3.31:2009/07/25:flock:2:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2009/04/27:fork:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2007/05/31:free_hugepages:2:alloc_hugepages:2: -ï¼ :LDP man-pages:3.31:2001/12/01:fremovexattr:2:removexattr:2: -ï¼ :LDP man-pages:3.31:2001/12/31:fsetxattr:2:setxattr:2: -ï¼ :LDP man-pages:3.31:2010/09/26:fstat:2:stat:2: -ï¼ :LDP man-pages:3.31:2010/09/26:fstat64:2:fstat:2: -○:LDP man-pages:3.31:2009/12/13:fstatat:2:2006/12/28::ysato444@yahoo.co.jp:Yuichi SATO: -ï¼ :LDP man-pages:3.31:2009/12/13:fstatat64:2:fstatat:2: -ï¼ :LDP man-pages:3.31:2010/09/04:fstatfs:2:statfs:2: -ï¼ :LDP man-pages:3.31:2010/09/04:fstatfs64:2:fstatfs:2: -ï¼ :LDP man-pages:3.31:2003/08/22:fstatvfs:2:statvfs:3: -○:LDP man-pages:3.31:2008/11/07:fsync:2:2007/10/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/10/07:ftruncate:2:truncate:2: -ï¼ :LDP man-pages:3.31:2010/10/07:ftruncate64:2:ftruncate:2: -○:LDP man-pages:3.31:2010/08/29:futex:2:2007/02/08::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.31:2009/12/13:futimesat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.31:0000/00/00:get_kernel_syms:2:2006/07/31::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2008/08/15:get_mempolicy:2:2008/11/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2008/11/27:get_thread_area:2:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2009/03/15:getcontext:2:2001/12/15::nakano@apm.seikei.ac.jp:NAKANO Takeo: -×:LDP man-pages:3.31:2008/06/03:getcpu:2::::: -ï¼ :LDP man-pages:3.31:2010/09/20:getcwd:2:getcwd:3: -○:LDP man-pages:3.31:2009/07/04:getdents:2:2009/03/05::argrath@ub32.org:Kentaro Shirakata: -ï¼ :LDP man-pages:3.31:2009/07/04:getdents64:2:getdents:2: -○:LDP man-pages:3.31:2009/09/27:getdomainname:2:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/09/20:getdtablesize:2:2007/01/14::argrath@ub32.org:Kentaro Shirakata: -ï¼ :LDP man-pages:3.31:1993/07/23:getegid:2:getgid:2: -ï¼ :LDP man-pages:3.31:1993/07/23:getegid32:2:getegid:2: -ï¼ :LDP man-pages:3.31:1993/07/23:geteuid:2:getuid:2: -ï¼ :LDP man-pages:3.31:1993/07/23:geteuid32:2:geteuid:2: -○:LDP man-pages:3.31:1993/07/23:getgid:2:1997/06/26::suto@av.crl.sony.co.jp:SUTO, Mitsuaki: -ï¼ :LDP man-pages:3.31:1993/07/23:getgid32:2:getgid:2: -○:LDP man-pages:3.31:2008/06/03:getgroups:2:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2008/06/03:getgroups32:2:getgroups:2: -ï¼ :LDP man-pages:3.31:2010/09/20:gethostid:2:gethostid:3: -○:LDP man-pages:3.31:2010/09/26:gethostname:2:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2009/03/15:getitimer:2:2007/10/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/09/20:getpagesize:2:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2008/12/03:getpeername:2:2005/02/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/26:getpgid:2:setpgid:2: -ï¼ :LDP man-pages:3.31:2010/09/26:getpgrp:2:setpgid:2: -○:LDP man-pages:3.31:2008/09/23:getpid:2:1997/06/27::suto@av.crl.sony.co.jp:SUTO, Mitsuaki: -ï¼ :LDP man-pages:3.31:2007/07/05:getpmsg:2:unimplemented:2: -ï¼ :LDP man-pages:3.31:2008/09/23:getppid:2:getpid:2: -○:LDP man-pages:3.31:2008/05/29:getpriority:2:2005/10/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2007/12/28:getresgid:2:getresuid:2: -ï¼ :LDP man-pages:3.31:2007/12/28:getresgid32:2:getresgid:2: -○:LDP man-pages:3.31:2007/12/28:getresuid:2:2003/11/13::argrath@ub32.org:Kentaro Shirakata: -ï¼ :LDP man-pages:3.31:2007/12/28:getresuid32:2:getresuid:2: -☆:LDP man-pages:3.30=>3.31:2010/11/06:getrlimit:2:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -☆:LDP man-pages:3.24=>3.31:2010/09/26:getrusage:2:2008/11/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/09/26:getsid:2:2002/02/03::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.31:2008/12/03:getsockname:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.31:2008/12/03:getsockopt:2:2008/07/24::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.31:2008/04/14:gettid:2:2003/09/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2009/03/25:gettimeofday:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:1993/07/23:getuid:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: -ï¼ :LDP man-pages:3.31:1993/07/23:getuid32:2:getuid:2: -○:LDP man-pages:3.31:2001/12/01:getxattr:2:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2007/07/05:gtty:2:unimplemented:2: -○:LDP man-pages:3.31:1994/08/21:idle:2:2000/01/14::argrath@yo.rim.or.jp:Kentaro Shirakata: -ï¼ :LDP man-pages:3.31:1995/11/29:inb:2:outb:2: -ï¼ :LDP man-pages:3.31:1995/11/29:inb_p:2:outb:2: -○:LDP man-pages:3.31:0000/00/00:init_module:2:2006/07/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:1995/11/29:inl:2:outb:2: -ï¼ :LDP man-pages:3.31:1995/11/29:inl_p:2:outb:2: -☆:LDP man-pages:3.29=>3.31:2010/10/20:inotify_add_watch:2:2006/08/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2008/10/10:inotify_init:2:2006/08/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2008/10/10:inotify_init1:2:inotify_init:2: -○:LDP man-pages:3.31:2010/10/15:inotify_rm_watch:2:2006/08/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:1995/11/29:insb:2:outb:2: -ï¼ :LDP man-pages:3.31:1995/11/29:insl:2:outb:2: -ï¼ :LDP man-pages:3.31:1995/11/29:insw:2:outb:2: -○:LDP man-pages:3.31:2010/11/11:intro:2:2006/04/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:1995/11/29:inw:2:outb:2: -ï¼ :LDP man-pages:3.31:1995/11/29:inw_p:2:outb:2: -○:LDP man-pages:3.31:2008/06/18:io_cancel:2:2003/03/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2008/06/18:io_destroy:2:2003/03/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2008/07/04:io_getevents:2:2003/03/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2008/06/18:io_setup:2:2003/03/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2008/06/18:io_submit:2:2003/03/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2000/09/21:ioctl:2:2005/02/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2007/12/29:ioctl_list:2:2004/06/13::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.31:2007/06/15:ioperm:2:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2004/12/26:iopl:2:2005/02/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2008/07/09:ioprio_get:2:ioprio_set:2: -○:LDP man-pages:3.31:2008/07/09:ioprio_set:2:2007/01/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2007/06/28:ipc:2:1997/02/23::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -×:LDP man-pages:3.31:2010/11/04:kexec_load:2::::: -×:LDP man-pages:3.31:2010/02/25:keyctl:2::::: -○:LDP man-pages:3.31:2009/09/15:kill:2:2005/12/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/09/20:killpg:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: -ï¼ :LDP man-pages:3.31:2010/09/26:lchown:2:chown:2: -ï¼ :LDP man-pages:3.31:2010/09/26:lchown32:2:lchown:2: -ï¼ :LDP man-pages:3.31:2001/12/01:lgetxattr:2:getxattr:2: -○:LDP man-pages:3.31:2008/08/21:link:2:2005/05/12::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.31:2009/12/13:linkat:2:2007/01/21::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2008/11/20:listen:2:2008/07/23::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.31:2001/12/01:listxattr:2:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2001/12/01:llistxattr:2:listxattr:2: -○:LDP man-pages:3.31:1995/06/10:llseek:2:2005/01/14::ysato444@yahoo.co.jp:Yuichi SATO: -ï¼ :LDP man-pages:3.31:2007/07/05:lock:2:unimplemented:2: -○:LDP man-pages:3.31:2004/06/17:lookup_dcookie:2:2005/02/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2001/12/01:lremovexattr:2:removexattr:2: -○:LDP man-pages:3.31:2010/09/11:lseek:2:2006/03/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2001/12/31:lsetxattr:2:setxattr:2: -ï¼ :LDP man-pages:3.31:2010/09/26:lstat:2:stat:2: -ï¼ :LDP man-pages:3.31:2010/09/26:lstat64:2:lstat:2: -☆:LDP man-pages:3.24=>3.31:2010/06/20:madvise:2:2007/01/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2007/07/05:madvise1:2:unimplemented:2: -○:LDP man-pages:3.31:2008/08/15:mbind:2:2008/11/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -×:LDP man-pages:3.31:2010/11/01:migrate_pages:2::::: -○:LDP man-pages:3.31:2008/04/22:mincore:2:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -☆:LDP man-pages:3.25=>3.31:2010/06/26:mkdir:2:2008/10/08::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.31:2009/12/13:mkdirat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.31:2010/09/20:mknod:2:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/09/20:mknodat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO: -☆:LDP man-pages:3.24=>3.31:2010/10/30:mlock:2:2006/02/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/10/30:mlockall:2:mlock:2: -☆:LDP man-pages:3.24=>3.31:2010/06/20:mmap:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2008/04/22:mmap2:2:2007/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2007/06/01:modify_ldt:2:2007/06/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/09/10:mount:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/06/11:move_pages:2:2008/11/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2008/08/06:mprotect:2:2007/06/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2007/07/05:mpx:2:unimplemented:2: -○:LDP man-pages:3.31:2010/08/29:mq_getsetattr:2:2006/07/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/10/04:mq_notify:2:mq_notify:3: -ï¼ :LDP man-pages:3.31:2009/02/20:mq_open:2:mq_open:3: -ï¼ :LDP man-pages:3.31:2010/09/20:mq_timedreceive:2:mq_receive:3: -ï¼ :LDP man-pages:3.31:2010/09/20:mq_timedsend:2:mq_send:3: -ï¼ :LDP man-pages:3.31:2010/08/29:mq_unlink:2:mq_unlink:3: -○:LDP man-pages:3.31:2010/06/10:mremap:2:2006/04/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2008/08/06:msgctl:2:2005/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2004/05/27:msgget:2:2005/03/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2008/04/23:msgop:2:2006/03/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2008/04/23:msgrcv:2:msgop:2: -ï¼ :LDP man-pages:3.31:2008/04/23:msgsnd:2:msgop:2: -○:LDP man-pages:3.31:2008/04/22:msync:2:2008/07/24::argrath@ub32.org:Kentaro Shirakata: -ï¼ :LDP man-pages:3.31:2010/10/30:munlock:2:mlock:2: -ï¼ :LDP man-pages:3.31:2010/10/30:munlockall:2:mlock:2: -ï¼ :LDP man-pages:3.31:2010/06/20:munmap:2:mmap:2: -○:LDP man-pages:3.31:2009/01/19:nanosleep:2:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:1997/07/16:nfsservctl:2:1997/08/30::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -○:LDP man-pages:3.31:2007/07/26:nice:2:2005/10/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/26:oldfstat:2:stat:2: -ï¼ :LDP man-pages:3.31:2010/09/26:oldlstat:2:stat:2: -ï¼ :LDP man-pages:3.31:2008/12/03:oldolduname:2:uname:2: -ï¼ :LDP man-pages:3.31:2010/09/26:oldstat:2:stat:2: -ï¼ :LDP man-pages:3.31:2008/12/03:olduname:2:uname:2: -○:LDP man-pages:3.31:2010/09/10:open:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2009/12/13:openat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.31:1995/11/29:outb:2:2005/10/30::argrath@ub32.org:Kentaro Shirakata: -ï¼ :LDP man-pages:3.31:1995/11/29:outb_p:2:outb:2: -ï¼ :LDP man-pages:3.31:1995/11/29:outl:2:outb:2: -ï¼ :LDP man-pages:3.31:1995/11/29:outl_p:2:outb:2: -ï¼ :LDP man-pages:3.31:1995/11/29:outsb:2:outb:2: -ï¼ :LDP man-pages:3.31:1995/11/29:outsl:2:outb:2: -ï¼ :LDP man-pages:3.31:1995/11/29:outsw:2:outb:2: -ï¼ :LDP man-pages:3.31:1995/11/29:outw:2:outb:2: -ï¼ :LDP man-pages:3.31:1995/11/29:outw_p:2:outb:2: -ï¼ :LDP man-pages:3.31:2009/12/05:path_resolution:2:path_resolution:7: -○:LDP man-pages:3.31:2008/10/06:pause:2:1997/06/27::suto@av.crl.sony.co.jp:SUTO, Mitsuaki: -ï¼ :LDP man-pages:3.31:2003/07/14:pciconfig_iobase:2:pciconfig_read:2: -○:LDP man-pages:3.31:2003/07/14:pciconfig_read:2:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO: -ï¼ :LDP man-pages:3.31:2003/07/14:pciconfig_write:2:pciconfig_read:2: -○:LDP man-pages:3.31:2003/01/01:personality:2:2003/09/14::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.31:2010/09/10:pipe:2:2008/11/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/10:pipe2:2:pipe:2: -○:LDP man-pages:3.31:2007/06/01:pivot_root:2:2000/06/14::nakano@apm.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.31:2010/09/20:poll:2:2006/07/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -☆:LDP man-pages:3.24=>3.31:2010/10/09:posix_fadvise:2:2007/02/08::ysato444@yahoo.co.jp:Yuichi SATO: -ï¼ :LDP man-pages:3.31:2010/09/20:ppoll:2:poll:2: -☆:LDP man-pages:3.24=>3.31:2010/05/13:prctl:2:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/09/26:pread:2:1999/06/25::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -ï¼ :LDP man-pages:3.31:2010/09/26:pread64:2:pread:2: -ï¼ :LDP man-pages:3.31:2010/11/06:prlimit:2:getrlimit:2: -ï¼ :LDP man-pages:3.31:2007/07/05:prof:2:unimplemented:2: -ï¼ :LDP man-pages:3.31:2010/08/31:pselect:2:select:2: -ï¼ :LDP man-pages:3.31:2010/08/31:pselect6:2:select:2: -○:LDP man-pages:3.31:2009/03/30:ptrace:2:2007/05/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2007/07/05:putpmsg:2:unimplemented:2: -ï¼ :LDP man-pages:3.31:2010/09/26:pwrite:2:pread:2: -ï¼ :LDP man-pages:3.31:2010/09/26:pwrite64:2:pwrite:2: -○:LDP man-pages:3.31:0000/00/00:query_module:2:2006/07/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -☆:LDP man-pages:3.24=>3.31:2010/06/16:quotactl:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.31:2009/02/23:read:2:2005/10/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/09/10:readahead:2:2005/02/27::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2008/10/02:readdir:2:1997/02/23::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -○:LDP man-pages:3.31:2010/09/20:readlink:2:2006/07/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2009/12/13:readlinkat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.31:2002/10/17:readv:2:2007/06/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -☆:LDP man-pages:3.29=>3.31:2010/10/31:reboot:2:2008/07/24::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.31:2010/08/29:recv:2:2008/12/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/08/29:recvfrom:2:recv:2: -ï¼ :LDP man-pages:3.31:2010/08/29:recvmsg:2:recv:2: -○:LDP man-pages:3.31:2008/04/22:remap_file_pages:2:2005/10/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2001/12/01:removexattr:2:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2009/03/30:rename:2:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2009/12/13:renameat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO: -×:LDP man-pages:3.31:2010/02/25:request_key:2::::: -○:LDP man-pages:3.31:2008/05/08:rmdir:2:2006/07/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/06/16:rt_sigaction:2:sigaction:2: -ï¼ :LDP man-pages:3.31:2008/10/04:rt_sigpending:2:sigpending:2: -ï¼ :LDP man-pages:3.31:2008/10/17:rt_sigprocmask:2:sigprocmask:2: -ï¼ :LDP man-pages:3.31:2007/07/26:rt_sigqueueinfo:2:sigqueue:2: -ï¼ :LDP man-pages:3.31:2008/06/26:rt_sigreturn:2:sigreturn:2: -ï¼ :LDP man-pages:3.31:2005/09/15:rt_sigsuspend:2:sigsuspend:2: -ï¼ :LDP man-pages:3.31:2008/10/04:rt_sigtimedwait:2:sigtimedwait:2: -ï¼ :LDP man-pages:3.31:2010/09/20:sbrk:2:brk:2: -○:LDP man-pages:3.31:2006/03/23:sched_get_priority_max:2:2006/04/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2006/03/23:sched_get_priority_min:2:sched_get_priority_max:2: -ï¼ :LDP man-pages:3.31:2010/11/06:sched_getaffinity:2:sched_setaffinity:2: -ï¼ :LDP man-pages:3.31:2006/03/23:sched_getparam:2:sched_setparam:2: -ï¼ :LDP man-pages:3.31:2010/10/04:sched_getscheduler:2:sched_setscheduler:2: -○:LDP man-pages:3.31:2007/04/06:sched_rr_get_interval:2:2007/06/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/11/06:sched_setaffinity:2:2008/12/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2006/03/23:sched_setparam:2:2006/04/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -☆:LDP man-pages:3.24=>3.31:2010/10/04:sched_setscheduler:2:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2008/10/18:sched_yield:2:1997/02/23::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -ï¼ :LDP man-pages:3.31:2007/07/05:security:2:unimplemented:2: -○:LDP man-pages:3.31:2010/08/31:select:2:2007/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/06/10:select_tut:2:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2009/09/27:semctl:2:2005/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2004/05/27:semget:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2008/10/04:semop:2:2007/05/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2008/10/04:semtimedop:2:semop:2: -○:LDP man-pages:3.31:2010/08/29:send:2:2006/04/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/02/15:sendfile:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/02/15:sendfile64:2:sendfile:2: -ï¼ :LDP man-pages:3.31:2010/08/29:sendmsg:2:send:2: -ï¼ :LDP man-pages:3.31:2010/08/29:sendto:2:send:2: -○:LDP man-pages:3.31:2008/08/15:set_mempolicy:2:2008/11/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2008/11/27:set_thread_area:2:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2004/09/10:set_tid_address:2:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: -ï¼ :LDP man-pages:3.31:2009/03/15:setcontext:2:getcontext:2: -ï¼ :LDP man-pages:3.31:2009/09/27:setdomainname:2:getdomainname:2: -ï¼ :LDP man-pages:3.31:2009/10/17:setegid:2:seteuid:2: -○:LDP man-pages:3.31:2009/10/17:seteuid:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2008/12/05:setfsgid:2:2005/02/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2008/12/05:setfsgid32:2:setfsgid:2: -○:LDP man-pages:3.31:2008/12/05:setfsuid:2:2005/02/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2008/12/05:setfsuid32:2:setfsuid:2: -○:LDP man-pages:3.31:2009/10/17:setgid:2:2003/02/14::argrath@ub32.org:Kentaro Shirakata: -ï¼ :LDP man-pages:3.31:2009/10/17:setgid32:2:setgid:2: -ï¼ :LDP man-pages:3.31:2008/06/03:setgroups:2:getgroups:2: -ï¼ :LDP man-pages:3.31:2008/06/03:setgroups32:2:setgroups:2: -ï¼ :LDP man-pages:3.31:2010/09/20:sethostid:2:gethostid:3: -ï¼ :LDP man-pages:3.31:2010/09/26:sethostname:2:gethostname:2: -ï¼ :LDP man-pages:3.31:2009/03/15:setitimer:2:getitimer:2: -○:LDP man-pages:3.31:2010/09/26:setpgid:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/26:setpgrp:2:setpgid:2: -ï¼ :LDP man-pages:3.31:2008/05/29:setpriority:2:getpriority:2: -ï¼ :LDP man-pages:3.31:2010/09/20:setregid:2:setreuid:2: -ï¼ :LDP man-pages:3.31:2010/09/20:setregid32:2:setregid:2: -ï¼ :LDP man-pages:3.31:2007/07/26:setresgid:2:setresuid:2: -ï¼ :LDP man-pages:3.31:2007/07/26:setresgid32:2:setresgid:2: -○:LDP man-pages:3.31:2007/07/26:setresuid:2:2005/11/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2007/07/26:setresuid32:2:setresuid:2: -○:LDP man-pages:3.31:2010/09/20:setreuid:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:setreuid32:2:setreuid:2: -ï¼ :LDP man-pages:3.31:2010/11/06:setrlimit:2:getrlimit:2: -○:LDP man-pages:3.31:2008/12/03:setsid:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: -ï¼ :LDP man-pages:3.31:2008/12/03:setsockopt:2:getsockopt:2: -ï¼ :LDP man-pages:3.31:2009/03/25:settimeofday:2:gettimeofday:2: -○:LDP man-pages:3.31:2010/02/21:setuid:2:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: -ï¼ :LDP man-pages:3.31:2010/02/21:setuid32:2:setuid:2: -○:LDP man-pages:3.31:2008/12/03:setup:2:2008/07/24::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.31:2001/12/31:setxattr:2:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2007/07/05:sgetmask:2:2007/10/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2008/06/03:shmat:2:shmop:2: -○:LDP man-pages:3.31:2008/08/07:shmctl:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2008/06/03:shmdt:2:shmop:2: -○:LDP man-pages:3.31:2006/05/02:shmget:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2008/06/03:shmop:2:2006/04/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2008/12/03:shutdown:2:2001/11/09::argrath@ub32.org:Kentaro Shirakata: -☆:LDP man-pages:3.24=>3.31:2010/06/16:sigaction:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/09/26:sigaltstack:2:2006/01/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2008/07/11:signal:2:2007/06/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2009/01/13:signalfd:2:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2009/01/13:signalfd4:2:signalfd:2: -○:LDP man-pages:3.31:2008/10/04:sigpending:2:2005/12/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2008/10/17:sigprocmask:2:2005/10/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2007/07/26:sigqueue:2:2007/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2008/06/26:sigreturn:2:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2005/09/15:sigsuspend:2:2005/10/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2008/10/04:sigtimedwait:2:sigwaitinfo:2: -○:LDP man-pages:3.31:2008/10/04:sigwaitinfo:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2009/01/19:socket:2:2008/11/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2007/06/28:socketcall:2:1997/03/03::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -○:LDP man-pages:3.31:2008/10/11:socketpair:2:2002/09/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2009/09/15:splice:2:2007/02/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -☆:LDP man-pages:2.67=>3.31:2007/12/20:spu_create:2:2007/10/23::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2007/11/25:spu_run:2:2007/10/23::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2007/07/05:ssetmask:2:sgetmask:2: -☆:LDP man-pages:3.25=>3.31:2010/09/26:stat:2:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/26:stat64:2:stat:2: -○:LDP man-pages:3.31:2010/09/04:statfs:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/04:statfs64:2:statfs:2: -ï¼ :LDP man-pages:3.31:2003/08/22:statvfs:2:statvfs:3: -○:LDP man-pages:3.31:2010/02/25:stime:2:2003/09/14::argrath@ub32.org:Kentaro Shirakata: -ï¼ :LDP man-pages:3.31:2007/07/05:stty:2:unimplemented:2: -×:LDP man-pages:3.31:2010/10/30:subpage_prot:2::::: -ï¼ :LDP man-pages:3.31:2010/06/15:swapoff:2:swapon:2: -○:LDP man-pages:3.31:2010/06/15:swapon:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.31:2010/09/20:symlink:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.31:2009/12/13:symlinkat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.31:2010/09/20:sync:2:2003/09/14::argrath@ub32.org:Kentaro Shirakata: -☆:LDP man-pages:3.24=>3.31:2010/10/09:sync_file_range:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/10/09:sync_file_range2:2:sync_file_range:2: -○:LDP man-pages:3.31:2007/07/26:syscall:2:2002/08/20::ysato@h4.dion.ne.jp:Yuichi SATO: -○:LDP man-pages:3.31:2010/11/06:syscalls:2:2007/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2008/11/20:sysctl:2:1999/12/03::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -○:LDP man-pages:3.31:2010/06/27:sysfs:2:2001/06/02::ysato@h4.dion.ne.jp:Yuichi SATO: -○:LDP man-pages:3.31:2007/11/15:sysinfo:2:2000/09/23::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -○:LDP man-pages:3.31:2008/06/20:syslog:2:2008/04/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2009/09/15:tee:2:2007/02/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2008/10/01:tgkill:2:tkill:2: -○:LDP man-pages:3.31:2010/02/25:time:2:1999/07/27::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -×:LDP man-pages:3.31:2010/09/27:timer_create:2::::: -×:LDP man-pages:3.31:2009/02/20:timer_delete:2::::: -×:LDP man-pages:3.31:2009/02/20:timer_getoverrun:2::::: -※:LDP man-pages:3.31:2009/02/20:timer_gettime:2:timer_settime:2: -×:LDP man-pages:3.31:2009/02/20:timer_settime:2::::: -○:LDP man-pages:3.31:2009/03/10:timerfd_create:2:2008/11/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2009/03/10:timerfd_gettime:2:timerfd_create:2: -ï¼ :LDP man-pages:3.31:2009/03/10:timerfd_settime:2:timerfd_create:2: -○:LDP man-pages:3.31:2008/06/25:times:2:2008/02/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2008/10/01:tkill:2:2005/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/10/07:truncate:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/10/07:truncate64:2:truncate:2: -ï¼ :LDP man-pages:3.31:2007/07/05:tuxcall:2:unimplemented:2: -ï¼ :LDP man-pages:3.31:2010/11/06:ugetrlimit:2:getrlimit:2: -○:LDP man-pages:3.31:2008/01/09:umask:2:2008/02/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -☆:LDP man-pages:3.24=>3.31:2010/06/19:umount:2:2008/11/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/06/19:umount2:2:umount:2: -○:LDP man-pages:3.31:2008/12/03:uname:2:2002/02/14::ysato@h4.dion.ne.jp:Yuichi SATO: -○:LDP man-pages:3.31:2007/07/05:unimplemented:2:2003/03/06::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -○:LDP man-pages:3.31:2004/06/23:unlink:2:2006/04/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2009/12/13:unlinkat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO: -☆:LDP man-pages:3.29=>3.31:2010/10/30:unshare:2:2006/08/19::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.31:2005/01/09:uselib:2:2005/04/21::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2003/08/04:ustat:2:2004/06/13::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.31:2008/08/06:utime:2:2006/10/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -×:LDP man-pages:3.31:2009/12/13:utimensat:2::::: -ï¼ :LDP man-pages:3.31:2008/08/06:utimes:2:utime:2: -○:LDP man-pages:3.31:2010/09/20:vfork:2:2008/11/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2007/07/26:vhangup:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.31:2009/02/20:vm86:2:2004/06/13::ysato444@yahoo.co.jp:Yuichi SATO: -ï¼ :LDP man-pages:3.31:2009/02/20:vm86old:2:vm86:2: -○:LDP man-pages:3.31:2009/09/15:vmsplice:2:2007/02/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2007/07/05:vserver:2:unimplemented:2: -○:LDP man-pages:3.31:2010/09/26:wait:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:wait3:2:wait4:2: -○:LDP man-pages:3.31:2010/09/20:wait4:2:2005/03/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/26:waitid:2:wait:2: -ï¼ :LDP man-pages:3.31:2010/09/26:waitpid:2:wait:2: -○:LDP man-pages:3.31:2010/08/29:write:2:2007/05/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2002/10/17:writev:2:readv:2: -ï¼ :LDP man-pages:3.31:2008/11/20:CMSG_ALIGN:3:cmsg:3: -ï¼ :LDP man-pages:3.31:2008/11/20:CMSG_FIRSTHDR:3:cmsg:3: -ï¼ :LDP man-pages:3.31:2008/11/20:CMSG_NXTHDR:3:cmsg:3: -ï¼ :LDP man-pages:3.31:2008/11/20:CMSG_SPACE:3:cmsg:3: -※:LDP man-pages:3.31:2010/09/10:CPU_ALLOC:3:CPU_SET:3: -※:LDP man-pages:3.31:2010/09/10:CPU_ALLOC_SIZE:3:CPU_SET:3: -※:LDP man-pages:3.31:2010/09/10:CPU_AND:3:CPU_SET:3: -※:LDP man-pages:3.31:2010/09/10:CPU_AND_S:3:CPU_SET:3: -※:LDP man-pages:3.31:2010/09/10:CPU_CLR:3:CPU_SET:3: -※:LDP man-pages:3.31:2010/09/10:CPU_CLR_S:3:CPU_SET:3: -※:LDP man-pages:3.31:2010/09/10:CPU_COUNT:3:CPU_SET:3: -※:LDP man-pages:3.31:2010/09/10:CPU_COUNT_S:3:CPU_SET:3: -※:LDP man-pages:3.31:2010/09/10:CPU_EQUAL:3:CPU_SET:3: -※:LDP man-pages:3.31:2010/09/10:CPU_EQUAL_S:3:CPU_SET:3: -※:LDP man-pages:3.31:2010/09/10:CPU_FREE:3:CPU_SET:3: -※:LDP man-pages:3.31:2010/09/10:CPU_ISSET:3:CPU_SET:3: -※:LDP man-pages:3.31:2010/09/10:CPU_ISSET_S:3:CPU_SET:3: -※:LDP man-pages:3.31:2010/09/10:CPU_OR:3:CPU_SET:3: -※:LDP man-pages:3.31:2010/09/10:CPU_OR_S:3:CPU_SET:3: -×:LDP man-pages:3.31:2010/09/10:CPU_SET:3::::: -※:LDP man-pages:3.31:2010/09/10:CPU_SET_S:3:CPU_SET:3: -※:LDP man-pages:3.31:2010/09/10:CPU_XOR:3:CPU_SET:3: -※:LDP man-pages:3.31:2010/09/10:CPU_XOR_S:3:CPU_SET:3: -※:LDP man-pages:3.31:2010/09/10:CPU_ZERO:3:CPU_SET:3: -※:LDP man-pages:3.31:2010/09/10:CPU_ZERO_S:3:CPU_SET:3: -ï¼ :LDP man-pages:3.31:2010/08/31:FD_CLR:3:select:2: -ï¼ :LDP man-pages:3.31:2010/08/31:FD_ISSET:3:select:2: -ï¼ :LDP man-pages:3.31:2010/08/31:FD_SET:3:select:2: -ï¼ :LDP man-pages:3.31:2010/08/31:FD_ZERO:3:select:2: -ï¼ :LDP man-pages:3.31:2007/07/26:HUGE_VAL:3:INFINITY:3: -ï¼ :LDP man-pages:3.31:2007/07/26:HUGE_VALF:3:INFINITY:3: -ï¼ :LDP man-pages:3.31:2007/07/26:HUGE_VALL:3:INFINITY:3: -○:LDP man-pages:3.31:2007/07/26:INFINITY:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.31:1999/07/04:MB_CUR_MAX:3:1999/09/11::cz8cb01@linux.or.jp:HAYAKAWA Hitoshi: -○:LDP man-pages:3.31:1999/07/04:MB_LEN_MAX:3:1999/09/11::cz8cb01@linux.or.jp:HAYAKAWA Hitoshi: -ï¼ :LDP man-pages:3.31:2007/07/26:NAN:3:INFINITY:3: -ï¼ :LDP man-pages:3.31:2001/12/16:__fbufsize:3:stdio_ext:3: -ï¼ :LDP man-pages:3.31:2001/12/16:__flbf:3:stdio_ext:3: -ï¼ :LDP man-pages:3.31:2001/12/16:__fpending:3:stdio_ext:3: -ï¼ :LDP man-pages:3.31:2001/12/15:__fpurge:3:fpurge:3: -ï¼ :LDP man-pages:3.31:2001/12/16:__freadable:3:stdio_ext:3: -ï¼ :LDP man-pages:3.31:2001/12/16:__freading:3:stdio_ext:3: -ï¼ :LDP man-pages:3.31:2001/12/16:__fsetlocking:3:stdio_ext:3: -ï¼ :LDP man-pages:3.31:2001/12/16:__fwritable:3:stdio_ext:3: -ï¼ :LDP man-pages:3.31:2001/12/16:__fwriting:3:stdio_ext:3: -ï¼ :LDP man-pages:3.31:2010/10/13:__malloc_hook:3:malloc_hook:3: -○:LDP man-pages:3.31:1997/03/08:__setfpucw:3:2000/09/20::nakano@apm.seikei.ac.jp:NAKANO Takeo: -ï¼ :LDP man-pages:3.31:2001/12/16:_flushlbf:3:stdio_ext:3: -○:LDP man-pages:3.31:2010/09/20:a64l:3:2004/01/17::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.31:2007/12/15:abort:3:1998/02/18::tyoshino@eng.toyo.ac.jp:Takashi Yoshino: -○:LDP man-pages:3.31:2010/09/20:abs:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.31:2010/09/20:acos:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:acosf:3:acos:3: -○:LDP man-pages:3.31:2010/09/20:acosh:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:acoshf:3:acosh:3: -ï¼ :LDP man-pages:3.31:2010/09/20:acoshl:3:acosh:3: -ï¼ :LDP man-pages:3.31:2010/09/20:acosl:3:acos:3: -ï¼ :LDP man-pages:3.31:2009/09/15:addmntent:3:getmntent:3: -○:LDP man-pages:3.31:2008/06/14:addseverity:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.31:2008/06/22:adjtime:3:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -☆:LDP man-pages:3.25=>3.31:2010/10/03:aio_cancel:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO: -☆:LDP man-pages:3.25=>3.31:2010/10/03:aio_error:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO: -☆:LDP man-pages:3.25=>3.31:2010/10/02:aio_fsync:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO: -×:LDP man-pages:3.31:2010/10/06:aio_init:3::::: -☆:LDP man-pages:3.25=>3.31:2010/10/03:aio_read:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO: -☆:LDP man-pages:3.25=>3.31:2010/10/03:aio_return:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO: -☆:LDP man-pages:3.25=>3.31:2010/10/02:aio_suspend:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO: -☆:LDP man-pages:3.25=>3.31:2010/10/02:aio_write:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.31:2008/01/24:alloca:3:2002/09/19::ysato444@yahoo.co.jp:Yuichi SATO: -ï¼ :LDP man-pages:3.31:2009/02/10:alphasort:3:scandir:3: -ï¼ :LDP man-pages:3.31:2007/05/18:argz:3:argz_add:3: -○:LDP man-pages:3.31:2007/05/18:argz_add:3:2003/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2007/05/18:argz_add_sep:3:argz_add:3: -ï¼ :LDP man-pages:3.31:2007/05/18:argz_append:3:argz_add:3: -ï¼ :LDP man-pages:3.31:2007/05/18:argz_count:3:argz_add:3: -ï¼ :LDP man-pages:3.31:2007/05/18:argz_create:3:argz_add:3: -ï¼ :LDP man-pages:3.31:2007/05/18:argz_create_sep:3:argz_add:3: -ï¼ :LDP man-pages:3.31:2007/05/18:argz_delete:3:argz_add:3: -ï¼ :LDP man-pages:3.31:2007/05/18:argz_extract:3:argz_add:3: -ï¼ :LDP man-pages:3.31:2007/05/18:argz_insert:3:argz_add:3: -ï¼ :LDP man-pages:3.31:2007/05/18:argz_next:3:argz_add:3: -ï¼ :LDP man-pages:3.31:2007/05/18:argz_replace:3:argz_add:3: -ï¼ :LDP man-pages:3.31:2007/05/18:argz_stringify:3:argz_add:3: -ï¼ :LDP man-pages:3.31:2010/02/25:asctime:3:ctime:3: -ï¼ :LDP man-pages:3.31:2010/02/25:asctime_r:3:ctime:3: -○:LDP man-pages:3.31:2010/09/20:asin:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:asinf:3:asin:3: -○:LDP man-pages:3.31:2010/09/20:asinh:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:asinhf:3:asinh:3: -ï¼ :LDP man-pages:3.31:2010/09/20:asinhl:3:asinh:3: -ï¼ :LDP man-pages:3.31:2010/09/20:asinl:3:asin:3: -○:LDP man-pages:3.31:2001/12/18:asprintf:3:2002/01/14::nakano@apm.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.31:2002/08/25:assert:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.31:2002/08/25:assert_perror:3:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/09/20:atan:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/09/20:atan2:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:atan2f:3:atan2:3: -ï¼ :LDP man-pages:3.31:2010/09/20:atan2l:3:atan2:3: -ï¼ :LDP man-pages:3.31:2010/09/20:atanf:3:atan:3: -○:LDP man-pages:3.31:2010/09/11:atanh:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/11:atanhf:3:atanh:3: -ï¼ :LDP man-pages:3.31:2010/09/11:atanhl:3:atanh:3: -ï¼ :LDP man-pages:3.31:2010/09/20:atanl:3:atan:3: -○:LDP man-pages:3.31:2008/12/05:atexit:3:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:1993/03/29:atof:3:1998/02/18::tyoshino@eng.toyo.ac.jp:Takashi Yoshino: -○:LDP man-pages:3.31:2010/09/20:atoi:3:2001/02/09::argrath@ub32.org:Kentaro Shirakata: -ï¼ :LDP man-pages:3.31:2010/09/20:atol:3:atoi:3: -ï¼ :LDP man-pages:3.31:2010/09/20:atoll:3:atoi:3: -ï¼ :LDP man-pages:3.31:2010/09/20:atoq:3:atoi:3: -ï¼ :LDP man-pages:3.31:2008/07/17:auth_destroy:3:rpc:3: -ï¼ :LDP man-pages:3.31:2008/07/17:authnone_create:3:rpc:3: -ï¼ :LDP man-pages:3.31:2008/07/17:authunix_create:3:rpc:3: -ï¼ :LDP man-pages:3.31:2008/07/17:authunix_create_default:3:rpc:3: -○:LDP man-pages:3.31:2008/06/14:backtrace:3:2007/10/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2008/06/14:backtrace_symbols:3:backtrace:3: -ï¼ :LDP man-pages:3.31:2008/06/14:backtrace_symbols_fd:3:backtrace:3: -○:LDP man-pages:3.31:2009/03/30:basename:3:2007/05/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2008/08/06:bcmp:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.31:2009/03/15:bcopy:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: -※:LDP man-pages:3.31:2010/09/10:be16toh:3:endian:3: -※:LDP man-pages:3.31:2010/09/10:be32toh:3:endian:3: -※:LDP man-pages:3.31:2010/09/10:be64toh:3:endian:3: -○:LDP man-pages:3.31:2008/12/03:bindresvport:3:2007/06/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2009/03/15:bsd_signal:3:2007/06/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2003/11/01:bsearch:3:2005/02/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2004/12/26:bstring:3:2003/11/13::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.31:2009/02/04:btowc:3:1999/09/11::cz8cb01@linux.or.jp:HAYAKAWA Hitoshi: -○:LDP man-pages:3.31:1994/08/18:btree:3:1999/08/16::nakano@apm.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.31:2009/01/15:byteorder:3:2005/11/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2002/12/31:bzero:3:2003/03/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2007/12/26:cabs:3:2003/07/23::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2007/12/26:cabsf:3:cabs:3: -ï¼ :LDP man-pages:3.31:2007/12/26:cabsl:3:cabs:3: -○:LDP man-pages:3.31:2007/12/26:cacos:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2007/12/26:cacosf:3:cacos:3: -○:LDP man-pages:3.31:2008/08/11:cacosh:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2008/08/11:cacoshf:3:cacosh:3: -ï¼ :LDP man-pages:3.31:2008/08/11:cacoshl:3:cacosh:3: -ï¼ :LDP man-pages:3.31:2007/12/26:cacosl:3:cacos:3: -ï¼ :LDP man-pages:3.31:2010/10/18:calloc:3:malloc:3: -ï¼ :LDP man-pages:3.31:2008/07/17:callrpc:3:rpc:3: -○:LDP man-pages:3.31:2005/07/14:canonicalize_file_name:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2007/12/26:carg:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2007/12/26:cargf:3:carg:3: -ï¼ :LDP man-pages:3.31:2007/12/26:cargl:3:carg:3: -○:LDP man-pages:3.31:2007/12/26:casin:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2007/12/26:casinf:3:casin:3: -○:LDP man-pages:3.31:2007/12/26:casinh:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2007/12/26:casinhf:3:casinh:3: -ï¼ :LDP man-pages:3.31:2007/12/26:casinhl:3:casinh:3: -ï¼ :LDP man-pages:3.31:2007/12/26:casinl:3:casin:3: -○:LDP man-pages:3.31:2007/12/26:catan:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2007/12/26:catanf:3:catan:3: -○:LDP man-pages:3.31:2007/12/26:catanh:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2007/12/26:catanhf:3:catanh:3: -ï¼ :LDP man-pages:3.31:2007/12/26:catanhl:3:catanh:3: -ï¼ :LDP man-pages:3.31:2007/12/26:catanl:3:catan:3: -ï¼ :LDP man-pages:3.31:2001/12/14:catclose:3:catopen:3: -○:LDP man-pages:3.31:1998/08/09:catgets:3:1999/03/01::nakano@apm.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.31:2001/12/14:catopen:3:2002/01/14::ysato@h4.dion.ne.jp:Yuichi SATO: -ï¼ :LDP man-pages:3.31:2007/05/18:cbc_crypt:3:des_crypt:3: -○:LDP man-pages:3.31:2010/09/20:cbrt:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:cbrtf:3:cbrt:3: -ï¼ :LDP man-pages:3.31:2010/09/20:cbrtl:3:cbrt:3: -○:LDP man-pages:3.31:2007/12/26:ccos:3:2003/07/28::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2007/12/26:ccosf:3:ccos:3: -○:LDP man-pages:3.31:2007/12/26:ccosh:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2007/12/26:ccoshf:3:ccosh:3: -ï¼ :LDP man-pages:3.31:2007/12/26:ccoshl:3:ccosh:3: -ï¼ :LDP man-pages:3.31:2007/12/26:ccosl:3:ccos:3: -○:LDP man-pages:3.31:2010/09/20:ceil:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:ceilf:3:ceil:3: -ï¼ :LDP man-pages:3.31:2010/09/20:ceill:3:ceil:3: -○:LDP man-pages:3.31:2010/09/12:cerf:3:2005/02/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/12:cerfc:3:cerf:3: -ï¼ :LDP man-pages:3.31:2010/09/12:cerfcf:3:cerf:3: -ï¼ :LDP man-pages:3.31:2010/09/12:cerfcl:3:cerf:3: -ï¼ :LDP man-pages:3.31:2010/09/12:cerff:3:cerf:3: -ï¼ :LDP man-pages:3.31:2010/09/12:cerfl:3:cerf:3: -○:LDP man-pages:3.31:2007/12/26:cexp:3:2003/08/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2002/07/28:cexp2:3:2005/03/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2002/07/28:cexp2f:3:cexp2:3: -ï¼ :LDP man-pages:3.31:2002/07/28:cexp2l:3:cexp2:3: -ï¼ :LDP man-pages:3.31:2007/12/26:cexpf:3:cexp:3: -ï¼ :LDP man-pages:3.31:2007/12/26:cexpl:3:cexp:3: -ï¼ :LDP man-pages:3.31:2010/06/20:cfgetispeed:3:termios:3: -ï¼ :LDP man-pages:3.31:2010/06/20:cfgetospeed:3:termios:3: -ï¼ :LDP man-pages:3.31:2010/06/20:cfmakeraw:3:termios:3: -○:LDP man-pages:3.31:2007/07/26:cfree:3:2004/08/14::ysato444@yahoo.co.jp:Yuichi SATO: -ï¼ :LDP man-pages:3.31:2010/06/20:cfsetispeed:3:termios:3: -ï¼ :LDP man-pages:3.31:2010/06/20:cfsetospeed:3:termios:3: -ï¼ :LDP man-pages:3.31:2010/06/20:cfsetspeed:3:termios:3: -○:LDP man-pages:3.31:2007/12/23:cimag:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2007/12/23:cimagf:3:cimag:3: -ï¼ :LDP man-pages:3.31:2007/12/23:cimagl:3:cimag:3: -○:LDP man-pages:3.31:2010/10/04:clearenv:3:2002/08/20::ysato@h4.dion.ne.jp:Yuichi SATO: -ï¼ :LDP man-pages:3.31:2008/08/29:clearerr:3:ferror:3: -ï¼ :LDP man-pages:3.31:2008/08/29:clearerr_unlocked:3:unlocked_stdio:3: -ï¼ :LDP man-pages:3.31:2008/07/17:clnt_broadcast:3:rpc:3: -ï¼ :LDP man-pages:3.31:2008/07/17:clnt_call:3:rpc:3: -ï¼ :LDP man-pages:3.31:2008/07/17:clnt_control:3:rpc:3: -ï¼ :LDP man-pages:3.31:2008/07/17:clnt_create:3:rpc:3: -ï¼ :LDP man-pages:3.31:2008/07/17:clnt_destroy:3:rpc:3: -ï¼ :LDP man-pages:3.31:2008/07/17:clnt_freeres:3:rpc:3: -ï¼ :LDP man-pages:3.31:2008/07/17:clnt_geterr:3:rpc:3: -ï¼ :LDP man-pages:3.31:2008/07/17:clnt_pcreateerror:3:rpc:3: -ï¼ :LDP man-pages:3.31:2008/07/17:clnt_perrno:3:rpc:3: -ï¼ :LDP man-pages:3.31:2008/07/17:clnt_perror:3:rpc:3: -ï¼ :LDP man-pages:3.31:2008/07/17:clnt_spcreateerror:3:rpc:3: -ï¼ :LDP man-pages:3.31:2008/07/17:clnt_sperrno:3:rpc:3: -ï¼ :LDP man-pages:3.31:2008/07/17:clnt_sperror:3:rpc:3: -ï¼ :LDP man-pages:3.31:2008/07/17:clntraw_create:3:rpc:3: -ï¼ :LDP man-pages:3.31:2008/07/17:clnttcp_create:3:rpc:3: -ï¼ :LDP man-pages:3.31:2008/07/17:clntudp_bufcreate:3:rpc:3: -ï¼ :LDP man-pages:3.31:2008/07/17:clntudp_create:3:rpc:3: -○:LDP man-pages:3.31:2008/08/28:clock:3:2007/06/01::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -×:LDP man-pages:3.31:2010/09/10:clock_getcpuclockid:3::::: -ï¼ :LDP man-pages:3.31:2010/02/03:clock_getres:3:clock_getres:2: -ï¼ :LDP man-pages:3.31:2010/02/03:clock_gettime:3:clock_getres:2: -ï¼ :LDP man-pages:3.31:2010/02/03:clock_settime:3:clock_getres:2: -○:LDP man-pages:3.31:2007/12/26:clog:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2008/08/11:clog10:3:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2008/08/11:clog10f:3:clog10:3: -ï¼ :LDP man-pages:3.31:2008/08/11:clog10l:3:clog10:3: -○:LDP man-pages:3.31:2002/07/28:clog2:3:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2002/07/28:clog2f:3:clog2:3: -ï¼ :LDP man-pages:3.31:2002/07/28:clog2l:3:clog2:3: -ï¼ :LDP man-pages:3.31:2007/12/26:clogf:3:clog:3: -ï¼ :LDP man-pages:3.31:2007/12/26:clogl:3:clog:3: -○:LDP man-pages:3.31:2008/09/23:closedir:3:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: -ï¼ :LDP man-pages:3.31:2008/11/12:closelog:3:syslog:3: -○:LDP man-pages:3.31:2008/11/20:cmsg:3:1999/08/17::nakano@apm.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.31:2010/02/03:confstr:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2007/12/26:conj:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2007/12/26:conjf:3:conj:3: -ï¼ :LDP man-pages:3.31:2007/12/26:conjl:3:conj:3: -○:LDP man-pages:3.31:2010/09/20:copysign:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:copysignf:3:copysign:3: -ï¼ :LDP man-pages:3.31:2010/09/20:copysignl:3:copysign:3: -○:LDP man-pages:3.31:2010/09/11:cos:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/11:cosf:3:cos:3: -○:LDP man-pages:3.31:2010/09/20:cosh:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:coshf:3:cosh:3: -ï¼ :LDP man-pages:3.31:2010/09/20:coshl:3:cosh:3: -ï¼ :LDP man-pages:3.31:2010/09/11:cosl:3:cos:3: -○:LDP man-pages:3.31:2002/07/28:cpow:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2002/07/28:cpowf:3:cpow:3: -ï¼ :LDP man-pages:3.31:2002/07/28:cpowl:3:cpow:3: -○:LDP man-pages:3.31:2010/06/10:cproj:3:2005/03/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/06/10:cprojf:3:cproj:3: -ï¼ :LDP man-pages:3.31:2010/06/10:cprojl:3:cproj:3: -○:LDP man-pages:3.31:2007/12/26:creal:3:2003/07/28::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2007/12/26:crealf:3:creal:3: -ï¼ :LDP man-pages:3.31:2007/12/26:creall:3:creal:3: -○:LDP man-pages:3.31:2010/06/20:crypt:3:2008/10/08::argrath@ub32.org:Kentaro Shirakata: -ï¼ :LDP man-pages:3.31:2010/06/20:crypt_r:3:crypt:3: -○:LDP man-pages:3.31:2007/12/26:csin:3:2003/07/28::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2007/12/26:csinf:3:csin:3: -○:LDP man-pages:3.31:2007/12/26:csinh:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2007/12/26:csinhf:3:csinh:3: -ï¼ :LDP man-pages:3.31:2007/12/26:csinhl:3:csinh:3: -ï¼ :LDP man-pages:3.31:2007/12/26:csinl:3:csin:3: -○:LDP man-pages:3.31:2008/08/11:csqrt:3:2003/08/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2008/08/11:csqrtf:3:csqrt:3: -ï¼ :LDP man-pages:3.31:2008/08/11:csqrtl:3:csqrt:3: -○:LDP man-pages:3.31:2007/12/26:ctan:3:2005/02/21::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2007/12/26:ctanf:3:ctan:3: -○:LDP man-pages:3.31:2007/12/26:ctanh:3:2005/02/21::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2007/12/26:ctanhf:3:ctanh:3: -ï¼ :LDP man-pages:3.31:2007/12/26:ctanhl:3:ctanh:3: -ï¼ :LDP man-pages:3.31:2007/12/26:ctanl:3:ctan:3: -○:LDP man-pages:3.31:2007/07/26:ctermid:3:1997/2/10::nagoya@cc.hit-u.ac.jp:NAGOYA Hiroaki: -○:LDP man-pages:3.31:2010/02/25:ctime:3:2008/11/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/02/25:ctime_r:3:ctime:3: -ï¼ :LDP man-pages:3.31:2008/06/29:cuserid:3:getlogin:3: -○:LDP man-pages:3.31:2009/12/05:daemon:3:2002/01/14::ysato@h4.dion.ne.jp:Yuichi SATO: -ï¼ :LDP man-pages:3.31:2010/02/25:daylight:3:tzset:3: -ï¼ :LDP man-pages:3.31:1994/01/02:db:3:dbopen:3: -○:LDP man-pages:3.31:1994/01/02:dbopen:3:1999/08/19::nakano@apm.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.31:2007/05/18:des_crypt:3:2004/08/14::ysato444@yahoo.co.jp:Yuichi SATO: -ï¼ :LDP man-pages:3.31:2007/05/18:des_setparity:3:des_crypt:3: -○:LDP man-pages:3.31:2010/02/25:difftime:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/09/26:dirfd:3:2003/10/15::ysato444@yahoo.co.jp:Yuichi SATO: -ï¼ :LDP man-pages:3.31:2009/03/30:dirname:3:basename:3: -○:LDP man-pages:3.31:2010/09/20:div:3:2004/06/13::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.31:2007/05/18:dl_iterate_phdr:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: -ï¼ :LDP man-pages:3.31:2008/12/06:dladdr:3:dlopen:3: -ï¼ :LDP man-pages:3.31:2008/12/06:dlclose:3:dlopen:3: -ï¼ :LDP man-pages:3.31:2008/12/06:dlerror:3:dlopen:3: -○:LDP man-pages:3.31:2008/12/06:dlopen:3:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2008/12/06:dlsym:3:dlopen:3: -ï¼ :LDP man-pages:3.31:2008/12/06:dlvsym:3:dlopen:3: -ï¼ :LDP man-pages:3.31:2010/06/17:dn_comp:3:resolver:3: -ï¼ :LDP man-pages:3.31:2010/06/17:dn_expand:3:resolver:3: -○:LDP man-pages:3.31:2010/09/15:dprintf:3:2002/01/14::nakano@apm.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.31:2007/07/26:drand48:3:1997/01/20::tyoshino@eng.toyo.ac.jp:YOSHINO Takashi: -○:LDP man-pages:3.31:2007/07/26:drand48_r:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: -ï¼ :LDP man-pages:3.31:2010/09/20:drem:3:remainder:3: -ï¼ :LDP man-pages:3.31:2010/09/20:dremf:3:remainder:3: -ï¼ :LDP man-pages:3.31:2010/09/20:dreml:3:remainder:3: -○:LDP man-pages:3.31:2010/09/22:dysize:3:2002/01/06::nakano@apm.seikei.ac.jp:NAKANO Takeo: -ï¼ :LDP man-pages:3.31:2010/11/01:eaccess:3:euidaccess:3: -ï¼ :LDP man-pages:3.31:2007/05/18:ecb_crypt:3:des_crypt:3: -○:LDP man-pages:3.31:2010/09/20:ecvt:3:2009/05/14::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.31:2007/07/26:ecvt_r:3:2002/09/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2008/07/17:edata:3:end:3: -○:LDP man-pages:3.31:2003/04/04:encrypt:3:2004/02/06::ysato444@yahoo.co.jp:Yuichi SATO: -ï¼ :LDP man-pages:3.31:2003/04/04:encrypt_r:3:encrypt:3: -○:LDP man-pages:3.31:2008/07/17:end:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2003/09/09:endaliasent:3:setaliasent:3: -ï¼ :LDP man-pages:3.31:2002/02/28:endfsent:3:getfsent:3: -ï¼ :LDP man-pages:3.31:2010/10/21:endgrent:3:getgrent:3: -ï¼ :LDP man-pages:3.31:2010/10/04:endhostent:3:gethostbyname:3: -×:LDP man-pages:3.31:2010/09/10:endian:3::::: -ï¼ :LDP man-pages:3.31:2009/09/15:endmntent:3:getmntent:3: -ï¼ :LDP man-pages:3.31:2008/08/19:endnetent:3:getnetent:3: -ï¼ :LDP man-pages:3.31:2007/07/26:endnetgrent:3:setnetgrent:3: -ï¼ :LDP man-pages:3.31:2008/08/19:endprotoent:3:getprotoent:3: -ï¼ :LDP man-pages:3.31:2010/10/21:endpwent:3:getpwent:3: -ï¼ :LDP man-pages:3.31:2008/08/19:endrpcent:3:getrpcent:3: -ï¼ :LDP man-pages:3.31:2008/08/19:endservent:3:getservent:3: -ï¼ :LDP man-pages:3.31:2010/02/25:endspent:3:getspnam:3: -ï¼ :LDP man-pages:3.31:2002/07/18:endttyent:3:getttyent:3: -ï¼ :LDP man-pages:3.31:2007/07/26:endusershell:3:getusershell:3: -ï¼ :LDP man-pages:3.31:2008/06/29:endutent:3:getutent:3: -ï¼ :LDP man-pages:3.31:2008/06/29:endutxent:3:getutent:3: -ï¼ :LDP man-pages:3.31:2007/05/18:envz:3:envz_add:3: -○:LDP man-pages:3.31:2007/05/18:envz_add:3:2003/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2007/05/18:envz_entry:3:envz_add:3: -ï¼ :LDP man-pages:3.31:2007/05/18:envz_get:3:envz_add:3: -ï¼ :LDP man-pages:3.31:2007/05/18:envz_merge:3:envz_add:3: -ï¼ :LDP man-pages:3.31:2007/05/18:envz_remove:3:envz_add:3: -ï¼ :LDP man-pages:3.31:2007/05/18:envz_strip:3:envz_add:3: -ï¼ :LDP man-pages:3.31:2007/07/26:erand48:3:drand48:3: -ï¼ :LDP man-pages:3.31:2007/07/26:erand48_r:3:drand48_r:3: -○:LDP man-pages:3.31:2010/09/20:erf:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/09/20:erfc:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:erfcf:3:erfc:3: -ï¼ :LDP man-pages:3.31:2010/09/20:erfcl:3:erfc:3: -ï¼ :LDP man-pages:3.31:2010/09/20:erff:3:erf:3: -ï¼ :LDP man-pages:3.31:2010/09/20:erfl:3:erf:3: -○:LDP man-pages:3.31:2007/12/28:err:3:2003/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2008/07/09:errno:3:2006/07/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/08/29:error:3:2006/08/19::ysato444@yahoo.co.jp:Yuichi SATO: -ï¼ :LDP man-pages:3.31:2010/08/29:error_at_line:3:error:3: -ï¼ :LDP man-pages:3.31:2010/08/29:error_message_count:3:error:3: -ï¼ :LDP man-pages:3.31:2010/08/29:error_one_per_line:3:error:3: -ï¼ :LDP man-pages:3.31:2010/08/29:error_print_progname:3:error:3: -ï¼ :LDP man-pages:3.31:2007/12/28:errx:3:err:3: -ï¼ :LDP man-pages:3.31:2008/07/17:etext:3:end:3: -○:LDP man-pages:3.31:2002/07/20:ether_aton:3:2002/09/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2002/07/20:ether_aton_r:3:ether_aton:3: -ï¼ :LDP man-pages:3.31:2002/07/20:ether_hostton:3:ether_aton:3: -ï¼ :LDP man-pages:3.31:2002/07/20:ether_line:3:ether_aton:3: -ï¼ :LDP man-pages:3.31:2002/07/20:ether_ntoa:3:ether_aton:3: -ï¼ :LDP man-pages:3.31:2002/07/20:ether_ntoa_r:3:ether_aton:3: -ï¼ :LDP man-pages:3.31:2002/07/20:ether_ntohost:3:ether_aton:3: -☆:LDP man-pages:3.29=>3.31:2010/11/01:euidaccess:3:2007/06/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/08/30:eventfd_read:3:eventfd:2: -ï¼ :LDP man-pages:3.31:2010/08/30:eventfd_write:3:eventfd:2: -○:LDP man-pages:3.31:2010/09/25:exec:3:2005/03/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/25:execl:3:exec:3: -ï¼ :LDP man-pages:3.31:2010/09/25:execle:3:exec:3: -ï¼ :LDP man-pages:3.31:2010/09/25:execlp:3:exec:3: -ï¼ :LDP man-pages:3.31:2010/09/25:execv:3:exec:3: -ï¼ :LDP man-pages:3.31:2010/09/25:execvp:3:exec:3: -ï¼ :LDP man-pages:3.31:2010/09/25:execvpe:3:exec:3: -○:LDP man-pages:3.31:2009/09/20:exit:3:2007/06/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/09/20:exp:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2008/08/11:exp10:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2008/08/11:exp10f:3:exp10:3: -ï¼ :LDP man-pages:3.31:2008/08/11:exp10l:3:exp10:3: -○:LDP man-pages:3.31:2010/09/20:exp2:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:exp2f:3:exp2:3: -ï¼ :LDP man-pages:3.31:2010/09/20:exp2l:3:exp2:3: -ï¼ :LDP man-pages:3.31:2010/09/20:expf:3:exp:3: -ï¼ :LDP man-pages:3.31:2010/09/20:expl:3:exp:3: -○:LDP man-pages:3.31:2010/09/12:expm1:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/12:expm1f:3:expm1:3: -ï¼ :LDP man-pages:3.31:2010/09/12:expm1l:3:expm1:3: -○:LDP man-pages:3.31:2010/09/20:fabs:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:fabsf:3:fabs:3: -ï¼ :LDP man-pages:3.31:2010/09/20:fabsl:3:fabs:3: -○:LDP man-pages:3.31:2009/02/23:fclose:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.31:2006/12/27:fcloseall:3:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:fcvt:3:ecvt:3: -ï¼ :LDP man-pages:3.31:2007/07/26:fcvt_r:3:ecvt_r:3: -○:LDP man-pages:3.31:2010/09/20:fdim:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:fdimf:3:fdim:3: -ï¼ :LDP man-pages:3.31:2010/09/20:fdiml:3:fdim:3: -ï¼ :LDP man-pages:3.31:2009/02/23:fdopen:3:fopen:3: -ï¼ :LDP man-pages:3.31:2010/06/20:fdopendir:3:opendir:3: -ï¼ :LDP man-pages:3.31:2010/10/31:feclearexcept:3:fenv:3: -ï¼ :LDP man-pages:3.31:2010/10/31:fedisableexcept:3:fenv:3: -ï¼ :LDP man-pages:3.31:2010/10/31:feenableexcept:3:fenv:3: -ï¼ :LDP man-pages:3.31:2010/10/31:fegetenv:3:fenv:3: -ï¼ :LDP man-pages:3.31:2010/10/31:fegetexcept:3:fenv:3: -ï¼ :LDP man-pages:3.31:2010/10/31:fegetexceptflag:3:fenv:3: -ï¼ :LDP man-pages:3.31:2010/10/31:fegetround:3:fenv:3: -ï¼ :LDP man-pages:3.31:2010/10/31:feholdexcept:3:fenv:3: -○:LDP man-pages:3.31:2010/10/31:fenv:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2008/08/29:feof:3:ferror:3: -ï¼ :LDP man-pages:3.31:2008/08/29:feof_unlocked:3:unlocked_stdio:3: -ï¼ :LDP man-pages:3.31:2010/10/31:feraiseexcept:3:fenv:3: -○:LDP man-pages:3.31:2008/08/29:ferror:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: -ï¼ :LDP man-pages:3.31:2008/08/29:ferror_unlocked:3:unlocked_stdio:3: -ï¼ :LDP man-pages:3.31:2010/10/31:fesetenv:3:fenv:3: -ï¼ :LDP man-pages:3.31:2010/10/31:fesetexceptflag:3:fenv:3: -ï¼ :LDP man-pages:3.31:2010/10/31:fesetround:3:fenv:3: -ï¼ :LDP man-pages:3.31:2010/10/31:fetestexcept:3:fenv:3: -ï¼ :LDP man-pages:3.31:2010/10/31:feupdateenv:3:fenv:3: -○:LDP man-pages:3.31:2010/09/15:fexecve:3:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2009/09/06:fflush:3:2001/11/09::argrath@ub32.org:Kentaro Shirakata: -ï¼ :LDP man-pages:3.31:2008/08/29:fflush_unlocked:3:unlocked_stdio:3: -○:LDP man-pages:3.31:2010/09/20:ffs:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: -ï¼ :LDP man-pages:3.31:2010/09/20:ffsl:3:ffs:3: -ï¼ :LDP man-pages:3.31:2010/09/20:ffsll:3:ffs:3: -ï¼ :LDP man-pages:3.31:2008/08/06:fgetc:3:gets:3: -ï¼ :LDP man-pages:3.31:2008/08/29:fgetc_unlocked:3:unlocked_stdio:3: -○:LDP man-pages:3.31:2008/07/10:fgetgrent:3:1997/12/19::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: -ï¼ :LDP man-pages:3.31:2010/10/21:fgetgrent_r:3:getgrent_r:3: -ï¼ :LDP man-pages:3.31:1993/11/29:fgetpos:3:fseek:3: -○:LDP man-pages:3.31:2008/07/10:fgetpwent:3:1997/12/18::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: -ï¼ :LDP man-pages:3.31:2010/10/21:fgetpwent_r:3:getpwent_r:3: -ï¼ :LDP man-pages:3.31:2008/08/06:fgets:3:gets:3: -ï¼ :LDP man-pages:3.31:2008/08/29:fgets_unlocked:3:unlocked_stdio:3: -ï¼ :LDP man-pages:3.31:2010/02/25:fgetspent:3:getspnam:3: -ï¼ :LDP man-pages:3.31:2010/02/25:fgetspent_r:3:getspnam:3: -○:LDP man-pages:3.31:1999/07/25:fgetwc:3:2001/11/09::argrath@ub32.org:Kentaro Shirakata: -ï¼ :LDP man-pages:3.31:2008/08/29:fgetwc_unlocked:3:unlocked_stdio:3: -○:LDP man-pages:3.31:1999/07/25:fgetws:3:2001/11/09::ysato@h4.dion.ne.jp:Yuichi SATO: -ï¼ :LDP man-pages:3.31:2008/08/29:fgetws_unlocked:3:unlocked_stdio:3: -ï¼ :LDP man-pages:3.31:2008/08/29:fileno:3:ferror:3: -ï¼ :LDP man-pages:3.31:2008/08/29:fileno_unlocked:3:unlocked_stdio:3: -○:LDP man-pages:3.31:2008/08/05:finite:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2008/08/05:finitef:3:finite:3: -ï¼ :LDP man-pages:3.31:2008/08/05:finitel:3:finite:3: -○:LDP man-pages:3.31:2008/08/29:flockfile:3:2001/11/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/09/20:floor:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:floorf:3:floor:3: -ï¼ :LDP man-pages:3.31:2010/09/20:floorl:3:floor:3: -○:LDP man-pages:3.31:2010/09/20:fma:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:fmaf:3:fma:3: -ï¼ :LDP man-pages:3.31:2010/09/20:fmal:3:fma:3: -○:LDP man-pages:3.31:2010/09/20:fmax:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:fmaxf:3:fmax:3: -ï¼ :LDP man-pages:3.31:2010/09/20:fmaxl:3:fmax:3: -○:LDP man-pages:3.31:2010/09/15:fmemopen:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/09/20:fmin:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:fminf:3:fmin:3: -ï¼ :LDP man-pages:3.31:2010/09/20:fminl:3:fmin:3: -○:LDP man-pages:3.31:2010/09/20:fmod:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:fmodf:3:fmod:3: -ï¼ :LDP man-pages:3.31:2010/09/20:fmodl:3:fmod:3: -○:LDP man-pages:3.31:2008/06/14:fmtmsg:3:2004/08/14::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.31:2000/10/15:fnmatch:3:2006/03/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2009/02/23:fopen:3:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -×:LDP man-pages:3.31:2008/12/05:fopencookie:3::::: -ï¼ :LDP man-pages:3.31:2010/06/13:forkpty:3:openpty:3: -○:LDP man-pages:3.31:1993/04/04:fpathconf:3:1998/03/20::nakano@apm.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.31:2010/09/20:fpclassify:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:fprintf:3:printf:3: -○:LDP man-pages:3.31:2001/12/15:fpurge:3:2002/01/14::nakano@apm.seikei.ac.jp:NAKANO Takeo: -ï¼ :LDP man-pages:3.31:1993/04/04:fputc:3:puts:3: -ï¼ :LDP man-pages:3.31:2008/08/29:fputc_unlocked:3:unlocked_stdio:3: -ï¼ :LDP man-pages:3.31:1993/04/04:fputs:3:puts:3: -ï¼ :LDP man-pages:3.31:2008/08/29:fputs_unlocked:3:unlocked_stdio:3: -○:LDP man-pages:3.31:1999/07/25:fputwc:3:2001/11/09::argrath@ub32.org:Kentaro Shirakata: -ï¼ :LDP man-pages:3.31:2008/08/29:fputwc_unlocked:3:unlocked_stdio:3: -○:LDP man-pages:3.31:1999/07/25:fputws:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: -ï¼ :LDP man-pages:3.31:2008/08/29:fputws_unlocked:3:unlocked_stdio:3: -○:LDP man-pages:3.31:1996/05/17:fread:3:2001/11/09::argrath@ub32.org:Kentaro Shirakata: -ï¼ :LDP man-pages:3.31:2008/08/29:fread_unlocked:3:unlocked_stdio:3: -ï¼ :LDP man-pages:3.31:2010/10/18:free:3:malloc:3: -ï¼ :LDP man-pages:3.31:2010/09/27:freeaddrinfo:3:getaddrinfo:3: -ï¼ :LDP man-pages:3.31:2010/09/04:freehostent:3:getipnodebyname:3: -※:LDP man-pages:3.31:2010/10/06:freeifaddrs:3:getifaddrs:3: -ï¼ :LDP man-pages:3.31:2009/02/23:freopen:3:fopen:3: -○:LDP man-pages:3.31:2010/09/20:frexp:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:frexpf:3:frexp:3: -ï¼ :LDP man-pages:3.31:2010/09/20:frexpl:3:frexp:3: -ï¼ :LDP man-pages:3.31:2010/09/20:fscanf:3:scanf:3: -○:LDP man-pages:3.31:1993/11/29:fseek:3:1998/04/27::nakano@apm.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.31:2001/11/05:fseeko:3:2006/01/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:1993/11/29:fsetpos:3:fseek:3: -ï¼ :LDP man-pages:3.31:2003/08/22:fstatvfs:3:statvfs:3: -ï¼ :LDP man-pages:3.31:1993/11/29:ftell:3:fseek:3: -ï¼ :LDP man-pages:3.31:2001/11/05:ftello:3:fseeko:3: -○:LDP man-pages:3.31:2010/02/25:ftime:3:2008/10/08::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.31:2001/11/28:ftok:3:2002/01/06::nakano@apm.seikei.ac.jp:NAKANO Takeo: -ï¼ :LDP man-pages:3.31:2008/08/29:ftrylockfile:3:flockfile:3: -○:LDP man-pages:3.31:2007/12/28:fts:3:2000/09/05::sato@complex.eng.hokudai.ac.jp:Yuichi SATO: -ï¼ :LDP man-pages:3.31:2007/12/28:fts_children:3:fts:3: -ï¼ :LDP man-pages:3.31:2007/12/28:fts_close:3:fts:3: -ï¼ :LDP man-pages:3.31:2007/12/28:fts_open:3:fts:3: -ï¼ :LDP man-pages:3.31:2007/12/28:fts_read:3:fts:3: -ï¼ :LDP man-pages:3.31:2007/12/28:fts_set:3:fts:3: -○:LDP man-pages:3.31:2010/09/20:ftw:3:2006/07/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2008/08/29:funlockfile:3:flockfile:3: -※:LDP man-pages:3.31:2009/12/13:futimens:3:utimensat:2: -○:LDP man-pages:3.31:2008/04/07:futimes:3:2006/07/31::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/09/20:fwide:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -ï¼ :LDP man-pages:3.31:2010/09/20:fwprintf:3:wprintf:3: -ï¼ :LDP man-pages:3.31:1996/05/17:fwrite:3:fread:3: -ï¼ :LDP man-pages:3.31:2008/08/29:fwrite_unlocked:3:unlocked_stdio:3: -※:LDP man-pages:3.31:2010/09/27:gai_cancel:3:getaddrinfo_a:3: -※:LDP man-pages:3.31:2010/09/27:gai_error:3:getaddrinfo_a:3: -ï¼ :LDP man-pages:3.31:2010/09/27:gai_strerror:3:getaddrinfo:3: -※:LDP man-pages:3.31:2010/09/27:gai_suspend:3:getaddrinfo_a:3: -○:LDP man-pages:3.31:2008/08/05:gamma:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2008/08/05:gammaf:3:gamma:3: -ï¼ :LDP man-pages:3.31:2008/08/05:gammal:3:gamma:3: -○:LDP man-pages:3.31:2010/09/20:gcvt:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:get_current_dir_name:3:getcwd:3: -ï¼ :LDP man-pages:3.31:2008/07/17:get_myaddress:3:rpc:3: -○:LDP man-pages:3.31:2010/09/27:getaddrinfo:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -×:LDP man-pages:3.31:2010/09/27:getaddrinfo_a:3::::: -ï¼ :LDP man-pages:3.31:2003/09/09:getaliasbyname:3:setaliasent:3: -ï¼ :LDP man-pages:3.31:2003/09/09:getaliasbyname_r:3:setaliasent:3: -ï¼ :LDP man-pages:3.31:2003/09/09:getaliasent:3:setaliasent:3: -ï¼ :LDP man-pages:3.31:2003/09/09:getaliasent_r:3:setaliasent:3: -ï¼ :LDP man-pages:3.31:2008/08/06:getc:3:gets:3: -ï¼ :LDP man-pages:3.31:2008/08/29:getc_unlocked:3:unlocked_stdio:3: -ï¼ :LDP man-pages:3.31:2008/08/06:getchar:3:gets:3: -ï¼ :LDP man-pages:3.31:2008/08/29:getchar_unlocked:3:unlocked_stdio:3: -○:LDP man-pages:3.31:2010/09/20:getcwd:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.31:2010/09/20:getdate:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:getdate_err:3:getdate:3: -ï¼ :LDP man-pages:3.31:2010/09/20:getdate_r:3:getdate:3: -ï¼ :LDP man-pages:3.31:2010/06/12:getdelim:3:getline:3: -○:LDP man-pages:3.31:2007/07/26:getdirentries:3:1998/04/30::nakano@apm.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.31:2008/03/17:getenv:3:2003/09/28::nakano@apm.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.31:2002/02/28:getfsent:3:2002/08/07::nakano@apm.seikei.ac.jp:NAKANO Takeo: -ï¼ :LDP man-pages:3.31:2002/02/28:getfsfile:3:getfsent:3: -ï¼ :LDP man-pages:3.31:2002/02/28:getfsspec:3:getfsent:3: -○:LDP man-pages:3.31:2010/10/21:getgrent:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/10/21:getgrent_r:3:2004/08/14::ysato444@yahoo.co.jp:Yuichi SATO: -ï¼ :LDP man-pages:3.31:2010/10/21:getgrgid:3:getgrnam:3: -ï¼ :LDP man-pages:3.31:2010/10/21:getgrgid_r:3:getgrnam:3: -☆:LDP man-pages:3.29=>3.31:2010/10/21:getgrnam:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/10/21:getgrnam_r:3:getgrnam:3: -○:LDP man-pages:3.31:2008/07/03:getgrouplist:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/10/04:gethostbyaddr:3:gethostbyname:3: -ï¼ :LDP man-pages:3.31:2010/10/04:gethostbyaddr_r:3:gethostbyname:3: -○:LDP man-pages:3.31:2010/10/04:gethostbyname:3:2007/06/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/10/04:gethostbyname2:3:gethostbyname:3: -ï¼ :LDP man-pages:3.31:2010/10/04:gethostbyname2_r:3:gethostbyname:3: -ï¼ :LDP man-pages:3.31:2010/10/04:gethostbyname_r:3:gethostbyname:3: -ï¼ :LDP man-pages:3.31:2010/10/04:gethostent:3:gethostbyname:3: -ï¼ :LDP man-pages:3.31:2010/10/04:gethostent_r:3:gethostbyname:3: -○:LDP man-pages:3.31:2010/09/20:gethostid:3:2009/01/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -×:LDP man-pages:3.31:2010/10/06:getifaddrs:3::::: -ï¼ :LDP man-pages:3.31:2010/09/04:getipnodebyaddr:3:getipnodebyname:3: -○:LDP man-pages:3.31:2010/09/04:getipnodebyname:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.31:2010/06/12:getline:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2007/12/08:getloadavg:3:2002/01/21::nakano@apm.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.31:2008/06/29:getlogin:3:2005/03/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2008/06/29:getlogin_r:3:getlogin:3: -○:LDP man-pages:3.31:2009/09/15:getmntent:3:2005/03/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2009/09/15:getmntent_r:3:getmntent:3: -○:LDP man-pages:3.31:2009/12/03:getnameinfo:3:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2008/08/19:getnetbyaddr:3:getnetent:3: -※:LDP man-pages:3.31:2010/09/10:getnetbyaddr_r:3:getnetent_r:3: -ï¼ :LDP man-pages:3.31:2008/08/19:getnetbyname:3:getnetent:3: -※:LDP man-pages:3.31:2010/09/10:getnetbyname_r:3:getnetent_r:3: -○:LDP man-pages:3.31:2008/08/19:getnetent:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -×:LDP man-pages:3.31:2010/09/10:getnetent_r:3::::: -ï¼ :LDP man-pages:3.31:2007/07/26:getnetgrent:3:setnetgrent:3: -ï¼ :LDP man-pages:3.31:2007/07/26:getnetgrent_r:3:setnetgrent:3: -○:LDP man-pages:3.31:2010/11/01:getopt:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/11/01:getopt_long:3:getopt:3: -ï¼ :LDP man-pages:3.31:2010/11/01:getopt_long_only:3:getopt:3: -○:LDP man-pages:3.31:2010/09/20:getpass:3:2001/02/14::nakano@apm.seikei.ac.jp:NAKANO Takeo:Older ver. is in obsolete/ -ï¼ :LDP man-pages:3.31:2008/08/19:getprotobyname:3:getprotoent:3: -※:LDP man-pages:3.31:2010/09/10:getprotobyname_r:3:getprotoent_r:3: -ï¼ :LDP man-pages:3.31:2008/08/19:getprotobynumber:3:getprotoent:3: -※:LDP man-pages:3.31:2010/09/10:getprotobynumber_r:3:getprotoent_r:3: -○:LDP man-pages:3.31:2008/08/19:getprotoent:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -×:LDP man-pages:3.31:2010/09/10:getprotoent_r:3::::: -○:LDP man-pages:3.31:2010/09/10:getpt:3:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/10/21:getpw:3:2008/10/08::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.31:2010/10/21:getpwent:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/10/21:getpwent_r:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -☆:LDP man-pages:3.29=>3.31:2010/10/21:getpwnam:3:2005/10/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/10/21:getpwnam_r:3:getpwnam:3: -ï¼ :LDP man-pages:3.31:2010/10/21:getpwuid:3:getpwnam:3: -ï¼ :LDP man-pages:3.31:2010/10/21:getpwuid_r:3:getpwnam:3: -ï¼ :LDP man-pages:3.31:2008/08/19:getrpcbyname:3:getrpcent:3: -※:LDP man-pages:3.31:2010/09/10:getrpcbyname_r:3:getrpcent_r:3: -ï¼ :LDP man-pages:3.31:2008/08/19:getrpcbynumber:3:getrpcent:3: -※:LDP man-pages:3.31:2010/09/10:getrpcbynumber_r:3:getrpcent_r:3: -○:LDP man-pages:3.31:2008/08/19:getrpcent:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -×:LDP man-pages:3.31:2010/09/10:getrpcent_r:3::::: -○:LDP man-pages:3.31:1987/10/06:getrpcport:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -○:LDP man-pages:3.31:2008/08/06:gets:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2008/08/19:getservbyname:3:getservent:3: -※:LDP man-pages:3.31:2010/09/10:getservbyname_r:3:getservent_r:3: -ï¼ :LDP man-pages:3.31:2008/08/19:getservbyport:3:getservent:3: -※:LDP man-pages:3.31:2010/09/10:getservbyport_r:3:getservent_r:3: -○:LDP man-pages:3.31:2008/08/19:getservent:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -×:LDP man-pages:3.31:2010/09/10:getservent_r:3::::: -ï¼ :LDP man-pages:3.31:2010/02/25:getspent:3:getspnam:3: -ï¼ :LDP man-pages:3.31:2010/02/25:getspent_r:3:getspnam:3: -○:LDP man-pages:3.31:2010/02/25:getspnam:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/02/25:getspnam_r:3:getspnam:3: -○:LDP man-pages:3.31:2010/09/26:getsubopt:3:2007/06/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2002/07/18:getttyent:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO: -ï¼ :LDP man-pages:3.31:2002/07/18:getttynam:3:getttyent:3: -○:LDP man-pages:3.31:2010/09/10:getumask:3:2003/02/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2007/07/26:getusershell:3:1998/02/05::ishioka@dad.eec.toshiba.co.jp:ISHIOKA Takashi: -○:LDP man-pages:3.31:2008/06/29:getutent:3:2005/03/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2008/06/29:getutent_r:3:getutent:3: -ï¼ :LDP man-pages:3.31:2008/06/29:getutid:3:getutent:3: -ï¼ :LDP man-pages:3.31:2008/06/29:getutid_r:3:getutent:3: -ï¼ :LDP man-pages:3.31:2008/06/29:getutline:3:getutent:3: -ï¼ :LDP man-pages:3.31:2008/06/29:getutline_r:3:getutent:3: -×:LDP man-pages:3.31:2010/09/10:getutmp:3::::: -※:LDP man-pages:3.31:2010/09/10:getutmpx:3:getutmp:3: -ï¼ :LDP man-pages:3.31:2008/06/29:getutxent:3:getutent:3: -ï¼ :LDP man-pages:3.31:2008/06/29:getutxid:3:getutent:3: -ï¼ :LDP man-pages:3.31:2008/06/29:getutxline:3:getutent:3: -○:LDP man-pages:3.31:2010/09/26:getw:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: -ï¼ :LDP man-pages:3.31:1999/07/25:getwc:3:fgetwc:3: -ï¼ :LDP man-pages:3.31:2008/08/29:getwc_unlocked:3:unlocked_stdio:3: -○:LDP man-pages:3.31:1999/07/25:getwchar:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: -ï¼ :LDP man-pages:3.31:2008/08/29:getwchar_unlocked:3:unlocked_stdio:3: -ï¼ :LDP man-pages:3.31:2010/09/20:getwd:3:getcwd:3: -○:LDP man-pages:3.31:2007/10/10:glob:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: -ï¼ :LDP man-pages:3.31:2007/10/10:globfree:3:glob:3: -ï¼ :LDP man-pages:3.31:2010/02/25:gmtime:3:ctime:3: -ï¼ :LDP man-pages:3.31:2010/02/25:gmtime_r:3:ctime:3: -※:LDP man-pages:3.31:2010/09/10:gnu_dev_major:3:makedev:3: -※:LDP man-pages:3.31:2010/09/10:gnu_dev_makedev:3:makedev:3: -※:LDP man-pages:3.31:2010/09/10:gnu_dev_minor:3:makedev:3: -ï¼ :LDP man-pages:3.31:2010/09/10:gnu_get_libc_release:3:gnu_get_libc_version:3: -○:LDP man-pages:3.31:2010/09/10:gnu_get_libc_version:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2008/06/14:grantpt:3:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2007/07/26:gsignal:3:2003/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/10/04:h_errno:3:gethostbyname:3: -○:LDP man-pages:3.31:1994/08/18:hash:3:1999/08/17::nakano@apm.seikei.ac.jp:NAKANO Takeo: -ï¼ :LDP man-pages:3.31:2009/09/15:hasmntopt:3:getmntent:3: -ï¼ :LDP man-pages:3.31:2008/10/06:hcreate:3:hsearch:3: -ï¼ :LDP man-pages:3.31:2008/10/06:hcreate_r:3:hsearch:3: -ï¼ :LDP man-pages:3.31:2008/10/06:hdestroy:3:hsearch:3: -ï¼ :LDP man-pages:3.31:2008/10/06:hdestroy_r:3:hsearch:3: -ï¼ :LDP man-pages:3.31:2010/10/04:herror:3:gethostbyname:3: -○:LDP man-pages:3.31:2008/10/06:hsearch:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2008/10/06:hsearch_r:3:hsearch:3: -ï¼ :LDP man-pages:3.31:2010/10/04:hstrerror:3:gethostbyname:3: -※:LDP man-pages:3.31:2010/09/10:htobe16:3:endian:3: -※:LDP man-pages:3.31:2010/09/10:htobe32:3:endian:3: -※:LDP man-pages:3.31:2010/09/10:htobe64:3:endian:3: -※:LDP man-pages:3.31:2010/09/10:htole16:3:endian:3: -※:LDP man-pages:3.31:2010/09/10:htole32:3:endian:3: -※:LDP man-pages:3.31:2010/09/10:htole64:3:endian:3: -ï¼ :LDP man-pages:3.31:2009/01/15:htonl:3:byteorder:3: -ï¼ :LDP man-pages:3.31:2009/01/15:htons:3:byteorder:3: -○:LDP man-pages:3.31:2010/09/20:hypot:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:hypotf:3:hypot:3: -ï¼ :LDP man-pages:3.31:2010/09/20:hypotl:3:hypot:3: -○:LDP man-pages:3.31:2008/09/08:iconv:3:2000/07/11::sato@complex.eng.hokudai.ac.jp:Yuichi SATO: -○:LDP man-pages:3.31:2008/08/11:iconv_close:3:2000/07/11::sato@complex.eng.hokudai.ac.jp:Yuichi SATO: -○:LDP man-pages:3.31:2008/08/11:iconv_open:3:2007/06/01::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/09/20:ilogb:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:ilogbf:3:ilogb:3: -ï¼ :LDP man-pages:3.31:2010/09/20:ilogbl:3:ilogb:3: -ï¼ :LDP man-pages:3.31:2010/09/20:imaxabs:3:abs:3: -ï¼ :LDP man-pages:3.31:2010/09/20:imaxdiv:3:div:3: -○:LDP man-pages:3.31:2010/09/20:index:3:1997/12/12::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: -○:LDP man-pages:3.31:2008/06/19:inet:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2008/06/19:inet_addr:3:inet:3: -ï¼ :LDP man-pages:3.31:2008/06/19:inet_aton:3:inet:3: -ï¼ :LDP man-pages:3.31:2008/06/19:inet_lnaof:3:inet:3: -ï¼ :LDP man-pages:3.31:2008/06/19:inet_makeaddr:3:inet_addr:3: -ï¼ :LDP man-pages:3.31:2008/06/19:inet_netof:3:inet:3: -ï¼ :LDP man-pages:3.31:2008/06/19:inet_network:3:inet:3: -ï¼ :LDP man-pages:3.31:2008/06/19:inet_ntoa:3:inet:3: -○:LDP man-pages:3.31:2008/11/11:inet_ntop:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2008/06/18:inet_pton:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:1993/06/02:infnan:3:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.31:2007/07/26:initgroups:3:2005/02/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:initstate:3:random:3: -ï¼ :LDP man-pages:3.31:2008/03/07:initstate_r:3:random_r:3: -ï¼ :LDP man-pages:3.31:2007/07/26:innetgr:3:setnetgrent:3: -☆:LDP man-pages:3.25=>3.31:2010/09/09:insque:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.31:2010/11/11:intro:3:2008/02/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2007/12/28:iruserok:3:rcmd:3: -ï¼ :LDP man-pages:3.31:2010/09/20:isalnum:3:isalpha:3: -○:LDP man-pages:3.31:2010/09/20:isalpha:3:2007/05/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:isascii:3:isalpha:3: -○:LDP man-pages:3.31:2008/12/03:isatty:3:1997/2/10::nagoya@cc.hit-u.ac.jp:NAGOYA Hiroaki: -ï¼ :LDP man-pages:3.31:2010/09/20:isblank:3:isalpha:3: -ï¼ :LDP man-pages:3.31:2010/09/20:iscntrl:3:isalpha:3: -ï¼ :LDP man-pages:3.31:2010/09/20:isdigit:3:isalpha:3: -ï¼ :LDP man-pages:3.31:2010/09/20:isfinite:3:fpclassify:3: -ï¼ :LDP man-pages:3.31:2010/09/20:isgraph:3:isalpha:3: -○:LDP man-pages:3.31:2010/09/20:isgreater:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:isgreaterequal:3:isgreater:3: -ï¼ :LDP man-pages:3.31:2010/09/20:isinf:3:fpclassify:3: -ï¼ :LDP man-pages:3.31:2008/08/05:isinff:3:finite:3: -ï¼ :LDP man-pages:3.31:2008/08/05:isinfl:3:finite:3: -ï¼ :LDP man-pages:3.31:2010/09/20:isless:3:isgreater:3: -ï¼ :LDP man-pages:3.31:2010/09/20:islessequal:3:isgreater:3: -ï¼ :LDP man-pages:3.31:2010/09/20:islessgreater:3:isgreater:3: -ï¼ :LDP man-pages:3.31:2010/09/20:islower:3:isalpha:3: -ï¼ :LDP man-pages:3.31:2010/09/20:isnan:3:fpclassify:3: -ï¼ :LDP man-pages:3.31:2008/08/05:isnanf:3:finite:3: -ï¼ :LDP man-pages:3.31:2008/08/05:isnanl:3:finite:3: -ï¼ :LDP man-pages:3.31:2010/09/20:isnormal:3:fpclassify:3: -ï¼ :LDP man-pages:3.31:2010/09/20:isprint:3:isalpha:3: -ï¼ :LDP man-pages:3.31:2010/09/20:ispunct:3:isalpha:3: -ï¼ :LDP man-pages:3.31:2010/09/20:isspace:3:isalpha:3: -ï¼ :LDP man-pages:3.31:2010/09/20:isunordered:3:isgreater:3: -ï¼ :LDP man-pages:3.31:2010/09/20:isupper:3:isalpha:3: -○:LDP man-pages:3.31:1999/07/25:iswalnum:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.31:1999/07/25:iswalpha:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.31:2010/09/20:iswblank:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.31:1999/07/25:iswcntrl:3:1999/09/12::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.31:1999/07/25:iswctype:3:1999/09/12::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.31:1999/07/25:iswdigit:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.31:1999/07/25:iswgraph:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.31:1999/07/25:iswlower:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.31:1999/07/25:iswprint:3:1999/09/12::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.31:1999/07/25:iswpunct:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.31:1999/07/25:iswspace:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.31:1999/07/25:iswupper:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.31:1999/07/25:iswxdigit:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: -ï¼ :LDP man-pages:3.31:2010/09/20:isxdigit:3:isalpha:3: -○:LDP man-pages:3.31:2010/09/20:j0:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:j0f:3:j0:3: -ï¼ :LDP man-pages:3.31:2010/09/20:j0l:3:j0:3: -ï¼ :LDP man-pages:3.31:2010/09/20:j1:3:j0:3: -ï¼ :LDP man-pages:3.31:2010/09/20:j1f:3:j0:3: -ï¼ :LDP man-pages:3.31:2010/09/20:j1l:3:j0:3: -ï¼ :LDP man-pages:3.31:2010/09/20:jn:3:j0:3: -ï¼ :LDP man-pages:3.31:2010/09/20:jnf:3:j0:3: -ï¼ :LDP man-pages:3.31:2010/09/20:jnl:3:j0:3: -ï¼ :LDP man-pages:3.31:2007/07/26:jrand48:3:drand48:3: -ï¼ :LDP man-pages:3.31:2007/07/26:jrand48_r:3:drand48_r:3: -ï¼ :LDP man-pages:3.31:2002/07/18:key_decryptsession:3:key_setsecret:3: -ï¼ :LDP man-pages:3.31:2002/07/18:key_encryptsession:3:key_setsecret:3: -ï¼ :LDP man-pages:3.31:2002/07/18:key_gendes:3:key_setsecret:3: -ï¼ :LDP man-pages:3.31:2002/07/18:key_secretkey_is_set:3:key_setsecret:3: -○:LDP man-pages:3.31:2002/07/18:key_setsecret:3:2003/02/01::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2008/06/20:klogctl:3:syslog:2: -ï¼ :LDP man-pages:3.31:2010/09/20:l64a:3:a64l:3: -ï¼ :LDP man-pages:3.31:2010/09/20:labs:3:abs:3: -ï¼ :LDP man-pages:3.31:2010/02/25:lckpwdf:3:getspnam:3: -ï¼ :LDP man-pages:3.31:2007/07/26:lcong48:3:drand48:3: -ï¼ :LDP man-pages:3.31:2007/07/26:lcong48_r:3:drand48_r:3: -○:LDP man-pages:3.31:2010/09/20:ldexp:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:ldexpf:3:ldexp:3: -ï¼ :LDP man-pages:3.31:2010/09/20:ldexpl:3:ldexp:3: -ï¼ :LDP man-pages:3.31:2010/09/20:ldiv:3:div:3: -※:LDP man-pages:3.31:2010/09/10:le16toh:3:endian:3: -※:LDP man-pages:3.31:2010/09/10:le32toh:3:endian:3: -※:LDP man-pages:3.31:2010/09/10:le64toh:3:endian:3: -ï¼ :LDP man-pages:3.31:1999/09/27:lfind:3:lsearch:3: -○:LDP man-pages:3.31:2010/09/11:lgamma:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/11:lgamma_r:3:lgamma:3: -ï¼ :LDP man-pages:3.31:2010/09/11:lgammaf:3:lgamma:3: -ï¼ :LDP man-pages:3.31:2010/09/11:lgammaf_r:3:lgamma:3: -ï¼ :LDP man-pages:3.31:2010/09/11:lgammal:3:lgamma:3: -ï¼ :LDP man-pages:3.31:2010/09/11:lgammal_r:3:lgamma:3: -×:LDP man-pages:3.31:2010/10/20:lio_listio:3::::: -ï¼ :LDP man-pages:3.31:2010/09/20:llabs:3:abs:3: -ï¼ :LDP man-pages:3.31:2010/09/20:lldiv:3:div:3: -ï¼ :LDP man-pages:3.31:2010/09/20:llrint:3:lrint:3: -ï¼ :LDP man-pages:3.31:2010/09/20:llrintf:3:lrint:3: -ï¼ :LDP man-pages:3.31:2010/09/20:llrintl:3:lrint:3: -ï¼ :LDP man-pages:3.31:2010/09/20:llround:3:lround:3: -ï¼ :LDP man-pages:3.31:2010/09/20:llroundf:3:lround:3: -ï¼ :LDP man-pages:3.31:2010/09/20:llroundl:3:lround:3: -○:LDP man-pages:3.31:1993/04/25:localeconv:3:1998/05/25::tyoshino@eng.toyo.ac.jp:Takashi Yoshino: -ï¼ :LDP man-pages:3.31:2010/02/25:localtime:3:ctime:3: -ï¼ :LDP man-pages:3.31:2010/02/25:localtime_r:3:ctime:3: -○:LDP man-pages:3.31:2010/09/20:lockf:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/09/20:log:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/09/20:log10:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:log10f:3:log10:3: -ï¼ :LDP man-pages:3.31:2010/09/20:log10l:3:log10:3: -○:LDP man-pages:3.31:2010/09/20:log1p:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:log1pf:3:log1p:3: -ï¼ :LDP man-pages:3.31:2010/09/20:log1pl:3:log1p:3: -○:LDP man-pages:3.31:2010/09/12:log2:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/12:log2f:3:log2:3: -ï¼ :LDP man-pages:3.31:2010/09/12:log2l:3:log2:3: -○:LDP man-pages:3.31:2010/09/20:logb:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:logbf:3:logb:3: -ï¼ :LDP man-pages:3.31:2010/09/20:logbl:3:logb:3: -ï¼ :LDP man-pages:3.31:2010/09/20:logf:3:log:3: -○:LDP man-pages:3.31:2004/05/06:login:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: -ï¼ :LDP man-pages:3.31:2010/06/13:login_tty:3:openpty:3: -ï¼ :LDP man-pages:3.31:2010/09/20:logl:3:log:3: -ï¼ :LDP man-pages:3.31:2004/05/06:logout:3:login:3: -ï¼ :LDP man-pages:3.31:2008/07/02:logwtmp:3:updwtmp:3: -○:LDP man-pages:3.31:2009/01/13:longjmp:3:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2007/07/26:lrand48:3:drand48:3: -ï¼ :LDP man-pages:3.31:2007/07/26:lrand48_r:3:drand48_r:3: -○:LDP man-pages:3.31:2010/09/20:lrint:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:lrintf:3:lrint:3: -ï¼ :LDP man-pages:3.31:2010/09/20:lrintl:3:lrint:3: -○:LDP man-pages:3.31:2010/09/20:lround:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:lroundf:3:lround:3: -ï¼ :LDP man-pages:3.31:2010/09/20:lroundl:3:lround:3: -○:LDP man-pages:3.31:1999/09/27:lsearch:3:2005/03/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2004/12/11:lseek64:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: -ï¼ :LDP man-pages:3.31:2008/04/07:lutimes:3:futimes:3: -※:LDP man-pages:3.31:2010/09/10:major:3:makedev:3: -○:LDP man-pages:3.31:2009/03/31:makecontext:3:2008/12/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -×:LDP man-pages:3.31:2010/09/10:makedev:3::::: -☆:LDP man-pages:3.25=>3.31:2010/10/18:malloc:3:2007/10/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -☆:LDP man-pages:3.25=>3.31:2010/10/13:malloc_hook:3:2003/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -×:LDP man-pages:3.31:2010/09/10:matherr:3::::: -○:LDP man-pages:3.31:1999/07/25:mblen:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -○:LDP man-pages:3.31:1999/07/25:mbrlen:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -○:LDP man-pages:3.31:2001/11/22:mbrtowc:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.31:2000/11/20:mbsinit:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -○:LDP man-pages:3.31:2010/09/15:mbsnrtowcs:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -○:LDP man-pages:3.31:1999/07/25:mbsrtowcs:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -○:LDP man-pages:3.31:1999/07/25:mbstowcs:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -○:LDP man-pages:3.31:2001/07/04:mbtowc:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -ï¼ :LDP man-pages:3.31:2010/09/20:memalign:3:posix_memalign:3: -○:LDP man-pages:3.31:2009/01/13:memccpy:3:1997/07/26::tyoshino@eng.toyo.ac.jp:Takashi Yoshino: -○:LDP man-pages:3.31:2009/12/04:memchr:3:2004/01/17::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.31:1993/04/10:memcmp:3:1997/12/17::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: -○:LDP man-pages:3.31:1993/04/10:memcpy:3:1997/02/21::tyoshino@eng.toyo.ac.jp:Takashi Yoshino: -○:LDP man-pages:3.31:2010/09/10:memfrob:3:1998/05/34::ishikawa@linux.or.jp:ISHIKAWA Mutsumi: -○:LDP man-pages:3.31:2008/12/05:memmem:3:1997/12/17::tyoshino@eng.toyo.ac.jp:Takashi Yoshino: -○:LDP man-pages:3.31:1993/04/10:memmove:3:2007/06/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2008/08/12:mempcpy:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO: -ï¼ :LDP man-pages:3.31:2009/12/04:memrchr:3:memchr:3: -○:LDP man-pages:3.31:1993/04/11:memset:3:1997/02/21::tyoshino@eng.toyo.ac.jp:Takashi Yoshino: -※:LDP man-pages:3.31:2010/09/10:minor:3:makedev:3: -○:LDP man-pages:3.31:2010/09/26:mkdtemp:3:2001/11/09::ysato@h4.dion.ne.jp:Yuichi SATO: -○:LDP man-pages:3.31:2008/06/12:mkfifo:3:2008/10/08::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.31:2009/12/13:mkfifoat:3:2006/08/19::ysato444@yahoo.co.jp:Yuichi SATO: -ï¼ :LDP man-pages:3.31:2010/09/26:mkostemp:3:mkstemp:3: -ï¼ :LDP man-pages:3.31:2010/09/26:mkostemps:3:mkstemp:3: -☆:LDP man-pages:3.24=>3.31:2010/09/26:mkstemp:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/26:mkstemps:3:mkstemp:3: -○:LDP man-pages:3.31:2010/09/20:mktemp:3:1999/04/10::tanisako@osa.dec.com:Kazuyuki Tanisako: -ï¼ :LDP man-pages:3.31:2010/02/25:mktime:3:ctime:3: -ï¼ :LDP man-pages:3.31:2008/04/22:mmap64:3:mmap2:2: -○:LDP man-pages:3.31:2010/09/20:modf:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:modff:3:modf:3: -ï¼ :LDP man-pages:3.31:2010/09/20:modfl:3:modf:3: -○:LDP man-pages:3.31:1993/06/04:mpool:3:1999/08/19::nakano@apm.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.31:2010/08/29:mq_close:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/08/29:mq_getattr:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/10/04:mq_notify:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2009/02/20:mq_open:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/09/20:mq_receive:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/09/20:mq_send:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/08/29:mq_setattr:3:mq_getattr:3: -ï¼ :LDP man-pages:3.31:2010/09/20:mq_timedreceive:3:mq_receive:3: -ï¼ :LDP man-pages:3.31:2010/09/20:mq_timedsend:3:mq_send:3: -○:LDP man-pages:3.31:2010/08/29:mq_unlink:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2007/07/26:mrand48:3:drand48:3: -ï¼ :LDP man-pages:3.31:2007/07/26:mrand48_r:3:drand48_r:3: -○:LDP man-pages:3.31:2002/07/20:mtrace:3:2003/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2002/07/20:muntrace:3:mtrace:3: -○:LDP man-pages:3.31:2010/09/20:nan:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:nanf:3:nan:3: -ï¼ :LDP man-pages:3.31:2010/09/20:nanl:3:nan:3: -ï¼ :LDP man-pages:3.31:2010/09/20:nearbyint:3:rint:3: -ï¼ :LDP man-pages:3.31:2010/09/20:nearbyintf:3:rint:3: -ï¼ :LDP man-pages:3.31:2010/09/20:nearbyintl:3:rint:3: -○:LDP man-pages:3.31:1999/05/14:netlink:3:1999/08/20::nakano@apm.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.31:2010/09/20:nextafter:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:nextafterf:3:nextafter:3: -ï¼ :LDP man-pages:3.31:2010/09/20:nextafterl:3:nextafter:3: -ï¼ :LDP man-pages:3.31:2010/09/20:nexttoward:3:nextafter:3: -ï¼ :LDP man-pages:3.31:2010/09/20:nexttowardf:3:nextafter:3: -ï¼ :LDP man-pages:3.31:2010/09/20:nexttowardl:3:nextafter:3: -ï¼ :LDP man-pages:3.31:2010/09/20:nftw:3:ftw:3: -○:LDP man-pages:3.31:2010/10/03:nl_langinfo:3:2001/07/15::KY4N-UCD@asahi-net.or.jp:UCHIDA Norihiro: -ï¼ :LDP man-pages:3.31:2007/07/26:nrand48:3:drand48:3: -ï¼ :LDP man-pages:3.31:2007/07/26:nrand48_r:3:drand48_r:3: -ï¼ :LDP man-pages:3.31:2009/01/15:ntohl:3:byteorder:3: -ï¼ :LDP man-pages:3.31:2009/01/15:ntohs:3:byteorder:3: -○:LDP man-pages:3.31:2008/07/12:offsetof:3:2006/07/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2008/12/05:on_exit:3:2009/01/15:o:amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/15:open_memstream:3:fmemopen:3: -ï¼ :LDP man-pages:3.31:2010/09/15:open_wmemstream:3:fmemopen:3: -○:LDP man-pages:3.31:2010/06/20:opendir:3:2007/10/14:o:amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2008/11/12:openlog:3:syslog:3: -○:LDP man-pages:3.31:2010/06/13:openpty:3:2006/02/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/11/01:optarg:3:getopt:3: -ï¼ :LDP man-pages:3.31:2010/11/01:opterr:3:getopt:3: -ï¼ :LDP man-pages:3.31:2010/11/01:optind:3:getopt:3: -ï¼ :LDP man-pages:3.31:2010/11/01:optopt:3:getopt:3: -ï¼ :LDP man-pages:3.31:2003/04/04:passwd2des:3:xcrypt:3: -ï¼ :LDP man-pages:3.31:1993/04/04:pathconf:3:fpathconf:3: -ï¼ :LDP man-pages:3.31:2010/02/03:pclose:3:popen:3: -○:LDP man-pages:3.31:2007/07/26:perror:3:2005/03/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2008/07/17:pmap_getmaps:3:rpc:3: -ï¼ :LDP man-pages:3.31:2008/07/17:pmap_getport:3:rpc:3: -ï¼ :LDP man-pages:3.31:2008/07/17:pmap_rmtcall:3:rpc:3: -ï¼ :LDP man-pages:3.31:2008/07/17:pmap_set:3:rpc:3: -ï¼ :LDP man-pages:3.31:2008/07/17:pmap_unset:3:rpc:3: -○:LDP man-pages:3.31:2010/02/03:popen:3:2008/11/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/09/20:posix_fallocate:3:2006/08/19::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.31:2010/09/20:posix_memalign:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/10/04:posix_openpt:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.31:2010/09/12:pow:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2008/08/11:pow10:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: -ï¼ :LDP man-pages:3.31:2008/08/11:pow10f:3:pow10:3: -ï¼ :LDP man-pages:3.31:2008/08/11:pow10l:3:pow10:3: -ï¼ :LDP man-pages:3.31:2010/09/12:powf:3:pow:3: -ï¼ :LDP man-pages:3.31:2010/09/12:powl:3:pow:3: -○:LDP man-pages:3.31:2010/09/20:printf:3:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2007/07/26:profil:3:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.31:2006/04/29:program_invocation_name:3:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2006/04/29:program_invocation_short_name:3:program_invocation_name:3: -ï¼ :LDP man-pages:3.31:2010/10/06:psiginfo:3:psignal:3: -☆:LDP man-pages:3.25=>3.31:2010/10/06:psignal:3:1997/12/26::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: -※:LDP man-pages:3.31:2008/11/11:pthread_attr_destroy:3:pthread_attr_init:3: -※:LDP man-pages:3.31:2010/09/10:pthread_attr_getaffinity_np:3:pthread_attr_setaffinity_np:3: -※:LDP man-pages:3.31:2010/02/03:pthread_attr_getdetachstate:3:pthread_attr_setdetachstate:3: -※:LDP man-pages:3.31:2008/10/24:pthread_attr_getguardsize:3:pthread_attr_setguardsize:3: -※:LDP man-pages:3.31:2008/11/10:pthread_attr_getinheritsched:3:pthread_attr_setinheritsched:3: -※:LDP man-pages:3.31:2010/02/03:pthread_attr_getschedparam:3:pthread_attr_setschedparam:3: -※:LDP man-pages:3.31:2010/02/03:pthread_attr_getschedpolicy:3:pthread_attr_setschedpolicy:3: -※:LDP man-pages:3.31:2008/10/24:pthread_attr_getscope:3:pthread_attr_setscope:3: -※:LDP man-pages:3.31:2008/10/24:pthread_attr_getstack:3:pthread_attr_setstack:3: -※:LDP man-pages:3.31:2008/10/24:pthread_attr_getstackaddr:3:pthread_attr_setstackaddr:3: -※:LDP man-pages:3.31:2008/11/05:pthread_attr_getstacksize:3:pthread_attr_setstacksize:3: -×:LDP man-pages:3.31:2008/11/11:pthread_attr_init:3::::: -×:LDP man-pages:3.31:2010/09/10:pthread_attr_setaffinity_np:3::::: -×:LDP man-pages:3.31:2010/02/03:pthread_attr_setdetachstate:3::::: -×:LDP man-pages:3.31:2008/10/24:pthread_attr_setguardsize:3::::: -×:LDP man-pages:3.31:2008/11/10:pthread_attr_setinheritsched:3::::: -×:LDP man-pages:3.31:2010/02/03:pthread_attr_setschedparam:3::::: -×:LDP man-pages:3.31:2010/02/03:pthread_attr_setschedpolicy:3::::: -×:LDP man-pages:3.31:2008/10/24:pthread_attr_setscope:3::::: -×:LDP man-pages:3.31:2008/10/24:pthread_attr_setstack:3::::: -×:LDP man-pages:3.31:2008/10/24:pthread_attr_setstackaddr:3::::: -×:LDP man-pages:3.31:2008/11/05:pthread_attr_setstacksize:3::::: -×:LDP man-pages:3.31:2008/11/17:pthread_cancel:3::::: -※:LDP man-pages:3.31:2008/11/24:pthread_cleanup_pop:3:pthread_cleanup_push:3: -※:LDP man-pages:3.31:2008/12/04:pthread_cleanup_pop_restore_np:3:pthread_cleanup_push_defer_np:3: -×:LDP man-pages:3.31:2008/11/24:pthread_cleanup_push:3::::: -×:LDP man-pages:3.31:2008/12/04:pthread_cleanup_push_defer_np:3::::: -×:LDP man-pages:3.31:2008/11/11:pthread_create:3::::: -×:LDP man-pages:3.31:2008/11/27:pthread_detach:3::::: -×:LDP man-pages:3.31:2009/03/30:pthread_equal:3::::: -×:LDP man-pages:3.31:2009/03/30:pthread_exit:3::::: -※:LDP man-pages:3.31:2010/09/10:pthread_getaffinity_np:3:pthread_setaffinity_np:3: -×:LDP man-pages:3.31:2010/09/10:pthread_getattr_np:3::::: -※:LDP man-pages:3.31:2009/04/10:pthread_getconcurrency:3:pthread_setconcurrency:3: -×:LDP man-pages:3.31:2009/02/08:pthread_getcpuclockid:3::::: -※:LDP man-pages:3.31:2008/11/17:pthread_getschedparam:3:pthread_setschedparam:3: -×:LDP man-pages:3.31:2008/11/27:pthread_join:3::::: -×:LDP man-pages:3.31:2009/01/28:pthread_kill:3::::: -×:LDP man-pages:3.31:2010/09/09:pthread_kill_other_threads_np:3::::: -×:LDP man-pages:3.31:2008/10/24:pthread_self:3::::: -×:LDP man-pages:3.31:2010/09/10:pthread_setaffinity_np:3::::: -×:LDP man-pages:3.31:2008/11/24:pthread_setcancelstate:3::::: -※:LDP man-pages:3.31:2008/11/24:pthread_setcanceltype:3:pthread_setcancelstate:3: -×:LDP man-pages:3.31:2009/04/10:pthread_setconcurrency:3::::: -×:LDP man-pages:3.31:2008/11/17:pthread_setschedparam:3::::: -×:LDP man-pages:3.31:2008/11/06:pthread_setschedprio:3::::: -×:LDP man-pages:3.31:2009/01/25:pthread_sigmask:3::::: -×:LDP man-pages:3.31:2008/11/17:pthread_testcancel:3::::: -※:LDP man-pages:3.31:2010/09/10:pthread_timedjoin_np:3:pthread_tryjoin_np:3: -×:LDP man-pages:3.31:2010/09/10:pthread_tryjoin_np:3::::: -×:LDP man-pages:3.31:2009/04/10:pthread_yield:3::::: -○:LDP man-pages:3.31:2008/09/03:ptsname:3:2005/03/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2008/09/03:ptsname_r:3:ptsname:3: -ï¼ :LDP man-pages:3.31:1993/04/04:putc:3:puts:3: -ï¼ :LDP man-pages:3.31:2008/08/29:putc_unlocked:3:unlocked_stdio:3: -ï¼ :LDP man-pages:3.31:1993/04/04:putchar:3:puts:3: -ï¼ :LDP man-pages:3.31:2008/08/29:putchar_unlocked:3:unlocked_stdio:3: -○:LDP man-pages:3.31:2007/07/26:putenv:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.31:2003/09/09:putgrent:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.31:2007/07/26:putpwent:3:1997/12/18::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: -○:LDP man-pages:3.31:1993/04/04:puts:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata: -ï¼ :LDP man-pages:3.31:2010/02/25:putspent:3:getspnam:3: -ï¼ :LDP man-pages:3.31:2008/06/29:pututline:3:getutent:3: -ï¼ :LDP man-pages:3.31:2008/06/29:pututxline:3:getutent:3: -ï¼ :LDP man-pages:3.31:2010/09/26:putw:3:getw:3: -ï¼ :LDP man-pages:3.31:1999/07/25:putwc:3:fputwc:3: -ï¼ :LDP man-pages:3.31:2008/08/29:putwc_unlocked:3:unlocked_stdio:3: -○:LDP man-pages:3.31:1999/07/25:putwchar:3:2001/11/09::argrath@ub32.org:Kentaro Shirakata: -ï¼ :LDP man-pages:3.31:2008/08/29:putwchar_unlocked:3:unlocked_stdio:3: -○:LDP man-pages:3.31:2010/09/20:qecvt:3:2002/09/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2007/07/26:qecvt_r:3:ecvt_r:3: -ï¼ :LDP man-pages:3.31:2010/09/20:qfcvt:3:qecvt:3: -ï¼ :LDP man-pages:3.31:2007/07/26:qfcvt_r:3:ecvt_r:3: -ï¼ :LDP man-pages:3.31:2010/09/20:qgcvt:3:qecvt:3: -○:LDP man-pages:3.31:2009/09/15:qsort:3:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2007/12/28:queue:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.31:2008/10/17:raise:3:1997/12/25::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: -☆:LDP man-pages:3.25=>3.31:2010/10/01:rand:3:2005/03/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/10/01:rand_r:3:rand:3: -○:LDP man-pages:3.31:2010/09/20:random:3:1997/01/21::tyoshino@eng.toyo.ac.jp:YOSHINO Takashi: -○:LDP man-pages:3.31:2008/03/07:random_r:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2009/12/04:rawmemchr:3:memchr:3: -○:LDP man-pages:3.31:2007/12/28:rcmd:3:1999/03/01::nakano@apm.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.31:1995/07/14:re_comp:3:1997/12/18::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: -ï¼ :LDP man-pages:3.31:1995/07/14:re_exec:3:re_comp:3: -○:LDP man-pages:3.31:2010/09/10:readdir:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/10:readdir_r:3:readdir:3: -ï¼ :LDP man-pages:3.31:2010/10/18:realloc:3:malloc:3: -○:LDP man-pages:3.31:2010/09/20:realpath:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:1994/08/18:recno:3:1999/08/19::nakano@apm.seikei.ac.jp:NAKANO Takeo: -ï¼ :LDP man-pages:3.31:2008/05/29:regcomp:3:regex:3: -ï¼ :LDP man-pages:3.31:2008/05/29:regerror:3:regex:3: -○:LDP man-pages:3.31:2008/05/29:regex:3:2005/03/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2008/05/29:regexec:3:regex:3: -ï¼ :LDP man-pages:3.31:2008/05/29:regfree:3:regex:3: -ï¼ :LDP man-pages:3.31:2008/07/17:registerrpc:3:rpc:3: -○:LDP man-pages:3.31:2010/09/20:remainder:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:remainderf:3:remainder:3: -ï¼ :LDP man-pages:3.31:2010/09/20:remainderl:3:remainder:3: -○:LDP man-pages:3.31:2008/12/03:remove:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata: -ï¼ :LDP man-pages:3.31:2010/09/09:remque:3:insque:3: -○:LDP man-pages:3.31:2010/09/20:remquo:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:remquof:3:remquo:3: -ï¼ :LDP man-pages:3.31:2010/09/20:remquol:3:remquo:3: -ï¼ :LDP man-pages:3.31:2010/06/17:res_init:3:resolver:3: -ï¼ :LDP man-pages:3.31:2010/06/17:res_mkquery:3:resolver:3: -ï¼ :LDP man-pages:3.31:2010/06/17:res_query:3:resolver:3: -ï¼ :LDP man-pages:3.31:2010/06/17:res_querydomain:3:resolver:3: -ï¼ :LDP man-pages:3.31:2010/06/17:res_search:3:resolver:3: -ï¼ :LDP man-pages:3.31:2010/06/17:res_send:3:resolver:3: -○:LDP man-pages:3.31:2010/06/17:resolver:3:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: -ï¼ :LDP man-pages:3.31:1993/11/29:rewind:3:fseek:3: -○:LDP man-pages:3.31:1995/06/11:rewinddir:3:1997/12/24::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: -○:LDP man-pages:3.31:2010/09/10:rexec:3:2005/12/28::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:rindex:3:index:3: -○:LDP man-pages:3.31:2010/09/20:rint:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:rintf:3:rint:3: -ï¼ :LDP man-pages:3.31:2010/09/20:rintl:3:rint:3: -○:LDP man-pages:3.31:2010/09/20:round:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:roundf:3:round:3: -ï¼ :LDP man-pages:3.31:2010/09/20:roundl:3:round:3: -○:LDP man-pages:3.31:2008/07/17:rpc:3:2001/11/09::ysato@h4.dion.ne.jp:Yuichi SATO: -○:LDP man-pages:3.31:2007/07/26:rpmatch:3:2006/07/31::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2007/12/28:rresvport:3:rcmd:3: -○:LDP man-pages:3.31:2010/02/25:rtime:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.31:2010/01/11:rtnetlink:3:1999/08/20::nakano@apm.seikei.ac.jp:NAKANO Takeo: -ï¼ :LDP man-pages:3.31:2007/12/28:ruserok:3:rcmd:3: -○:LDP man-pages:3.31:2010/09/20:scalb:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:scalbf:3:scalb:3: -ï¼ :LDP man-pages:3.31:2010/09/20:scalbl:3:scalb:3: -×:LDP man-pages:3.31:2010/09/20:scalbln:3::::: -※:LDP man-pages:3.31:2010/09/20:scalblnf:3:scalbln:3: -※:LDP man-pages:3.31:2010/09/20:scalblnl:3:scalbln:3: -※:LDP man-pages:3.31:2010/09/20:scalbn:3:scalbln:3: -※:LDP man-pages:3.31:2010/09/20:scalbnf:3:scalbln:3: -※:LDP man-pages:3.31:2010/09/20:scalbnl:3:scalbln:3: -○:LDP man-pages:3.31:2009/02/10:scandir:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/09/20:scanf:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/10/31:sched_getcpu:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2007/07/26:seed48:3:drand48:3: -ï¼ :LDP man-pages:3.31:2007/07/26:seed48_r:3:drand48_r:3: -○:LDP man-pages:3.31:2009/03/11:seekdir:3:1997/12/24::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: -○:LDP man-pages:3.31:2006/03/25:sem_close:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2006/03/25:sem_destroy:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2006/03/25:sem_getvalue:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2008/07/27:sem_init:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2009/02/20:sem_open:3:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2009/03/30:sem_post:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/02/25:sem_timedwait:3:sem_wait:3: -ï¼ :LDP man-pages:3.31:2010/02/25:sem_trywait:3:sem_wait:3: -○:LDP man-pages:3.31:2006/03/25:sem_unlink:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/02/25:sem_wait:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2003/09/09:setaliasent:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.31:2008/06/26:setbuf:3:2001/07/14::ysato@h4.dion.ne.jp:Yuichi SATO: -ï¼ :LDP man-pages:3.31:2008/06/26:setbuffer:3:setbuf:3: -○:LDP man-pages:3.31:2009/09/20:setenv:3:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: -ï¼ :LDP man-pages:3.31:2002/02/28:setfsent:3:getfsent:3: -ï¼ :LDP man-pages:3.31:2010/10/21:setgrent:3:getgrent:3: -ï¼ :LDP man-pages:3.31:2010/10/04:sethostent:3:gethostbyname:3: -ï¼ :LDP man-pages:3.31:2010/09/20:sethostid:3:gethostid:3: -○:LDP man-pages:3.31:2009/06/26:setjmp:3:2009/03/05::argrath@ub32.org:Kentaro Shirakata: -ï¼ :LDP man-pages:3.31:2003/04/04:setkey:3:encrypt:3: -ï¼ :LDP man-pages:3.31:2003/04/04:setkey_r:3:encrypt:3: -ï¼ :LDP man-pages:3.31:2008/06/26:setlinebuf:3:setbuf:3: -○:LDP man-pages:3.31:2008/12/05:setlocale:3:2002/10/12::nakano@apm.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.31:2001/10/05:setlogmask:3:2001/11/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2009/09/15:setmntent:3:getmntent:3: -ï¼ :LDP man-pages:3.31:2008/08/19:setnetent:3:getnetent:3: -○:LDP man-pages:3.31:2007/07/26:setnetgrent:3:2005/03/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2008/08/19:setprotoent:3:getprotoent:3: -ï¼ :LDP man-pages:3.31:2010/10/21:setpwent:3:getpwent:3: -ï¼ :LDP man-pages:3.31:2008/08/19:setrpcent:3:getrpcent:3: -ï¼ :LDP man-pages:3.31:2008/08/19:setservent:3:getservent:3: -ï¼ :LDP man-pages:3.31:2010/02/25:setspent:3:getspnam:3: -ï¼ :LDP man-pages:3.31:2010/09/20:setstate:3:random:3: -ï¼ :LDP man-pages:3.31:2008/03/07:setstate_r:3:random_r:3: -ï¼ :LDP man-pages:3.31:2002/07/18:setttyent:3:getttyent:3: -ï¼ :LDP man-pages:3.31:2007/07/26:setusershell:3:getusershell:3: -ï¼ :LDP man-pages:3.31:2008/06/29:setutent:3:getutent:3: -ï¼ :LDP man-pages:3.31:2008/06/29:setutxent:3:getutent:3: -ï¼ :LDP man-pages:3.31:2008/06/26:setvbuf:3:setbuf:3: -ï¼ :LDP man-pages:3.31:2010/02/25:sgetspent:3:getspnam:3: -ï¼ :LDP man-pages:3.31:2010/02/25:sgetspent_r:3:getspnam:3: -○:LDP man-pages:3.31:2009/02/25:shm_open:3:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2009/02/25:shm_unlink:3:shm_open:3: -ï¼ :LDP man-pages:3.31:2008/09/01:sigaddset:3:sigsetops:3: -ï¼ :LDP man-pages:3.31:2008/09/01:sigandset:3:sigsetops:3: -ï¼ :LDP man-pages:3.31:2007/07/26:sigblock:3:sigvec:3: -ï¼ :LDP man-pages:3.31:2008/09/01:sigdelset:3:sigsetops:3: -ï¼ :LDP man-pages:3.31:2008/09/01:sigemptyset:3:sigsetops:3: -ï¼ :LDP man-pages:3.31:2008/09/01:sigfillset:3:sigsetops:3: -ï¼ :LDP man-pages:3.31:2007/07/26:siggetmask:3:sigvec:3: -ï¼ :LDP man-pages:3.31:2010/09/20:sighold:3:sigset:3: -ï¼ :LDP man-pages:3.31:2010/09/20:sigignore:3:sigset:3: -○:LDP man-pages:3.31:2010/09/26:siginterrupt:3:1998/05/24::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -ï¼ :LDP man-pages:3.31:2008/09/01:sigisemptyset:3:sigsetops:3: -ï¼ :LDP man-pages:3.31:2008/09/01:sigismember:3:sigsetops:3: -ï¼ :LDP man-pages:3.31:2009/01/13:siglongjmp:3:longjmp:3: -ï¼ :LDP man-pages:3.31:2007/07/26:sigmask:3:sigvec:3: -○:LDP man-pages:3.31:2010/09/20:signbit:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/11:signgam:3:lgamma:3: -○:LDP man-pages:3.31:2009/02/04:significand:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: -ï¼ :LDP man-pages:3.31:2009/02/04:significandf:3:significand:3: -ï¼ :LDP man-pages:3.31:2009/02/04:significandl:3:significand:3: -ï¼ :LDP man-pages:3.31:2008/09/01:sigorset:3:sigsetops:3: -○:LDP man-pages:3.31:2010/09/12:sigpause:3:2005/12/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:sigrelse:3:sigset:3: -○:LDP man-pages:3.31:2010/09/20:sigset:3:2005/12/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2009/06/26:sigsetjmp:3:setjmp:3: -ï¼ :LDP man-pages:3.31:2007/07/26:sigsetmask:3:sigvec:3: -○:LDP man-pages:3.31:2008/09/01:sigsetops:3:2005/12/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/26:sigstack:3:sigaltstack:2: -○:LDP man-pages:3.31:2007/07/26:sigvec:3:2005/12/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/09/10:sigwait:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/09/11:sin:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2008/08/11:sincos:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2008/08/11:sincosf:3:sincos:3: -ï¼ :LDP man-pages:3.31:2008/08/11:sincosl:3:sincos:3: -ï¼ :LDP man-pages:3.31:2010/09/11:sinf:3:sin:3: -○:LDP man-pages:3.31:2010/09/20:sinh:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:sinhf:3:sinh:3: -ï¼ :LDP man-pages:3.31:2010/09/20:sinhl:3:sinh:3: -ï¼ :LDP man-pages:3.31:2010/09/11:sinl:3:sin:3: -○:LDP man-pages:3.31:2010/02/03:sleep:3:1997/01/21::tyoshino@eng.toyo.ac.jp:YOSHINO Takashi: -ï¼ :LDP man-pages:3.31:2010/09/20:snprintf:3:printf:3: -○:LDP man-pages:3.31:2008/12/03:sockatmark:3:2006/08/19::ysato444@yahoo.co.jp:Yuichi SATO: -ï¼ :LDP man-pages:3.31:2010/09/20:sprintf:3:printf:3: -○:LDP man-pages:3.31:2010/09/20:sqrt:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:sqrtf:3:sqrt:3: -ï¼ :LDP man-pages:3.31:2010/09/20:sqrtl:3:sqrt:3: -ï¼ :LDP man-pages:3.31:2010/10/01:srand:3:rand:3: -ï¼ :LDP man-pages:3.31:2007/07/26:srand48:3:drand48:3: -ï¼ :LDP man-pages:3.31:2007/07/26:srand48_r:3:drand48_r:3: -ï¼ :LDP man-pages:3.31:2010/09/20:srandom:3:random:3: -ï¼ :LDP man-pages:3.31:2008/03/07:srandom_r:3:random_r:3: -ï¼ :LDP man-pages:3.31:2010/09/20:sscanf:3:scanf:3: -ï¼ :LDP man-pages:3.31:2007/07/26:ssignal:3:gsignal:3: -○:LDP man-pages:3.31:2003/08/22:statvfs:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.31:2001/10/14:stdarg:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata: -ï¼ :LDP man-pages:3.31:2008/07/14:stderr:3:stdin:3: -○:LDP man-pages:3.31:2008/07/14:stdin:3:2005/09/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2001/12/26:stdio:3:2004/02/06::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.31:2001/12/16:stdio_ext:3:2002/08/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2008/07/14:stdout:3:stdin:3: -○:LDP man-pages:3.31:2010/09/15:stpcpy:3:1997/12/26::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: -○:LDP man-pages:3.31:2010/09/15:stpncpy:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -○:LDP man-pages:3.31:2010/09/20:strcasecmp:3:1997/12/25::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: -ï¼ :LDP man-pages:3.31:2010/09/20:strcasestr:3:strstr:3: -○:LDP man-pages:3.31:2010/09/20:strcat:3:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.31:2010/09/20:strchr:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:strchrnul:3:strchr:3: -○:LDP man-pages:3.31:2010/09/20:strcmp:3:2001/10/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/09/20:strcoll:3:2007/06/01::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/09/20:strcpy:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: -ï¼ :LDP man-pages:3.31:2010/09/20:strcspn:3:strspn:3: -○:LDP man-pages:3.31:2010/09/26:strdup:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata: -ï¼ :LDP man-pages:3.31:2010/09/26:strdupa:3:strdup:3: -○:LDP man-pages:3.31:2009/03/30:strerror:3:2005/12/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2009/03/30:strerror_r:3:strerror:3: -○:LDP man-pages:3.31:2000/12/05:strfmon:3:2001/02/14::nakano@apm.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.31:2010/09/20:strfry:3:1998/05/25::motoki@hal.t.u-tokyo.ac.jp:Akihiro Motoki: -○:LDP man-pages:3.31:2010/01/17:strftime:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/02/25:string:3:1997/01/20::yoshino@civil.jcn.nihon-u.ac.jp:YOSHINO Takashi: -○:LDP man-pages:3.31:1993/04/12:strlen:3:1997/01/20::tyoshino@eng.toyo.ac.jp:YOSHINO Takashi: -ï¼ :LDP man-pages:3.31:2010/09/20:strncasecmp:3:strcasecmp:3: -ï¼ :LDP man-pages:3.31:2010/09/20:strncat:3:strcat:3: -ï¼ :LDP man-pages:3.31:2010/09/20:strncmp:3:strcmp:3: -ï¼ :LDP man-pages:3.31:2010/09/20:strncpy:3:strcpy:3: -ï¼ :LDP man-pages:3.31:2010/09/26:strndup:3:strdup:3: -ï¼ :LDP man-pages:3.31:2010/09/26:strndupa:3:strdup:3: -○:LDP man-pages:3.31:2010/10/31:strnlen:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -○:LDP man-pages:3.31:2010/09/20:strpbrk:3:1999/12/25::argrath@yo.rim.or.jp:Kentaro Shirakata: -○:LDP man-pages:3.31:2009/12/05:strptime:3:2002/01/14::ysato@h4.dion.ne.jp:Yuichi SATO: -ï¼ :LDP man-pages:3.31:2010/09/20:strrchr:3:strchr:3: -○:LDP man-pages:3.31:2010/09/20:strsep:3:2009/03/05::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.31:2010/09/15:strsignal:3:1999/12/25::argrath@yo.rim.or.jp:Kentaro Shirakata: -○:LDP man-pages:3.31:2010/09/20:strspn:3:1997/12/16::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: -○:LDP man-pages:3.31:2010/09/20:strstr:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.31:2010/09/20:strtod:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:strtof:3:strtod:3: -○:LDP man-pages:3.31:2003/11/28:strtoimax:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.31:2010/09/27:strtok:3:2005/11/19:o:amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/27:strtok_r:3:strtok:3: -○:LDP man-pages:3.31:2010/09/20:strtol:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:strtold:3:strtod:3: -ï¼ :LDP man-pages:3.31:2010/09/20:strtoll:3:strtol:3: -ï¼ :LDP man-pages:3.31:2010/09/20:strtoq:3:strtol:3: -○:LDP man-pages:3.31:2010/09/20:strtoul:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:strtoull:3:strtoul:3: -ï¼ :LDP man-pages:3.31:2003/11/28:strtoumax:3:strtoimax:3: -ï¼ :LDP man-pages:3.31:2010/09/20:strtouq:3:strtoul:3: -○:LDP man-pages:3.31:2001/12/19:strverscmp:3:2002/09/22::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/09/20:strxfrm:3:1999/03/24::ss236rx@ymg.urban.ne.jp:Shouichi Saito: -ï¼ :LDP man-pages:3.31:2008/07/17:svc_destroy:3:rpc:3: -ï¼ :LDP man-pages:3.31:2008/07/17:svc_freeargs:3:rpc:3: -ï¼ :LDP man-pages:3.31:2008/07/17:svc_getargs:3:rpc:3: -ï¼ :LDP man-pages:3.31:2008/07/17:svc_getcaller:3:rpc:3: -ï¼ :LDP man-pages:3.31:2008/07/17:svc_getreq:3:rpc:3: -ï¼ :LDP man-pages:3.31:2008/07/17:svc_getreqset:3:rpc:3: -ï¼ :LDP man-pages:3.31:2008/07/17:svc_register:3:rpc:3: -ï¼ :LDP man-pages:3.31:2008/07/17:svc_run:3:rpc:3: -ï¼ :LDP man-pages:3.31:2008/07/17:svc_sendreply:3:rpc:3: -ï¼ :LDP man-pages:3.31:2008/07/17:svc_unregister:3:rpc:3: -ï¼ :LDP man-pages:3.31:2008/07/17:svcerr_auth:3:rpc:3: -ï¼ :LDP man-pages:3.31:2008/07/17:svcerr_decode:3:rpc:3: -ï¼ :LDP man-pages:3.31:2008/07/17:svcerr_noproc:3:rpc:3: -ï¼ :LDP man-pages:3.31:2008/07/17:svcerr_noprog:3:rpc:3: -ï¼ :LDP man-pages:3.31:2008/07/17:svcerr_progvers:3:rpc:3: -ï¼ :LDP man-pages:3.31:2008/07/17:svcerr_systemerr:3:rpc:3: -ï¼ :LDP man-pages:3.31:2008/07/17:svcerr_weakauth:3:rpc:3: -ï¼ :LDP man-pages:3.31:2008/07/17:svcfd_create:3:rpc:3: -ï¼ :LDP man-pages:3.31:2008/07/17:svcraw_create:3:rpc:3: -ï¼ :LDP man-pages:3.31:2008/07/17:svctcp_create:3:rpc:3: -ï¼ :LDP man-pages:3.31:2008/07/17:svcudp_bufcreate:3:rpc:3: -ï¼ :LDP man-pages:3.31:2008/07/17:svcudp_create:3:rpc:3: -○:LDP man-pages:3.31:2001/12/15:swab:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata: -ï¼ :LDP man-pages:3.31:2009/03/31:swapcontext:3:makecontext:3: -ï¼ :LDP man-pages:3.31:2010/09/20:swprintf:3:wprintf:3: -ï¼ :LDP man-pages:3.31:2007/07/26:sys_errlist:3:perror:3: -ï¼ :LDP man-pages:3.31:2007/07/26:sys_nerr:3:perror:3: -○:LDP man-pages:3.31:2007/12/12:sysconf:3:2005/03/31::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2008/11/12:syslog:3:2008/07/24:o:argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.31:2010/09/10:system:3:2005/03/12:o:amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2007/05/04:sysv_signal:3:2007/06/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/09/11:tan:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/11:tanf:3:tan:3: -○:LDP man-pages:3.31:2010/09/20:tanh:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:tanhf:3:tanh:3: -ï¼ :LDP man-pages:3.31:2010/09/20:tanhl:3:tanh:3: -ï¼ :LDP man-pages:3.31:2010/09/11:tanl:3:tan:3: -ï¼ :LDP man-pages:3.31:2010/06/20:tcdrain:3:termios:3: -ï¼ :LDP man-pages:3.31:2010/06/20:tcflow:3:termios:3: -ï¼ :LDP man-pages:3.31:2010/06/20:tcflush:3:termios:3: -ï¼ :LDP man-pages:3.31:2010/06/20:tcgetattr:3:termios:3: -○:LDP man-pages:3.31:2003/01/28:tcgetpgrp:3:2003/08/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/09/10:tcgetsid:3:2003/08/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/06/20:tcsendbreak:3:termios:3: -ï¼ :LDP man-pages:3.31:2010/06/20:tcsetattr:3:termios:3: -ï¼ :LDP man-pages:3.31:2003/01/28:tcsetpgrp:3:tcgetpgrp:3: -ï¼ :LDP man-pages:3.31:2008/09/23:tdelete:3:tsearch:3: -ï¼ :LDP man-pages:3.31:2008/09/23:tdestroy:3:tsearch:3: -○:LDP man-pages:3.31:2009/03/11:telldir:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2007/07/26:tempnam:3:2006/07/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/06/20:termios:3:2007/05/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2008/09/23:tfind:3:tsearch:3: -○:LDP man-pages:3.31:2010/09/20:tgamma:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:tgammaf:3:tgamma:3: -ï¼ :LDP man-pages:3.31:2010/09/20:tgammal:3:tgamma:3: -○:LDP man-pages:3.31:2007/07/26:timegm:3:2002/01/14::nakano@apm.seikei.ac.jp:NAKANO Takeo: -ï¼ :LDP man-pages:3.31:2007/07/26:timelocal:3:timegm:3: -○:LDP man-pages:3.31:2010/02/25:timeradd:3:2007/10/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/02/25:timerclear:3:timeradd:3: -ï¼ :LDP man-pages:3.31:2010/02/25:timercmp:3:timeradd:3: -ï¼ :LDP man-pages:3.31:2010/02/25:timerisset:3:timeradd:3: -ï¼ :LDP man-pages:3.31:2010/02/25:timersub:3:timeradd:3: -ï¼ :LDP man-pages:3.31:2010/02/25:timezone:3:tzset:3: -○:LDP man-pages:3.31:2008/07/14:tmpfile:3:2001/12/14:o:ysato@h4.dion.ne.jp:Yuichi SATO: -○:LDP man-pages:3.31:2010/09/10:tmpnam:3:2006/07/26:o:amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/10:tmpnam_r:3:tmpnam:3: -○:LDP man-pages:3.31:2009/03/15:toascii:3:1997/12/16::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: -ï¼ :LDP man-pages:3.31:1993/04/04:tolower:3:toupper:3: -○:LDP man-pages:3.31:1993/04/04:toupper:3:1997/04/29::rui@linux.or.jp:Ueyama Rui: -○:LDP man-pages:3.31:1999/07/25:towctrans:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.31:1999/07/25:towlower:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.31:1999/07/25:towupper:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.31:2010/09/20:trunc:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/09/20:truncf:3:trunc:3: -ï¼ :LDP man-pages:3.31:2010/09/20:truncl:3:trunc:3: -○:LDP man-pages:3.31:2008/09/23:tsearch:3:2002/02/14::ysato@h4.dion.ne.jp:Yuichi SATO: -○:LDP man-pages:3.31:2008/07/14:ttyname:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata: -ï¼ :LDP man-pages:3.31:2008/07/14:ttyname_r:3:ttyname:3: -○:LDP man-pages:3.31:2010/09/20:ttyslot:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO: -ï¼ :LDP man-pages:3.31:2008/09/23:twalk:3:tsearch:3: -ï¼ :LDP man-pages:3.31:2010/02/25:tzname:3:tzset:3: -○:LDP man-pages:3.31:2010/02/25:tzset:3:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/09/20:ualarm:3:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/02/25:ulckpwdf:3:getspnam:3: -○:LDP man-pages:3.31:2008/08/06:ulimit:3:1998/12/06::nakano@apm.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.31:2010/02/10:undocumented:3:2005/02/21::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2008/08/06:ungetc:3:gets:3: -○:LDP man-pages:3.31:1999/09/19:ungetwc:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -○:LDP man-pages:3.31:2008/08/29:unlocked_stdio:3:2001/11/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2008/06/14:unlockpt:3:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2009/09/20:unsetenv:3:setenv:3: -○:LDP man-pages:3.31:2008/07/02:updwtmp:3:2008/10/08::argrath@ub32.org:Kentaro Shirakata: -ï¼ :LDP man-pages:3.31:2008/07/02:updwtmpx:3:updwtmp:3: -○:LDP man-pages:3.31:2010/09/20:usleep:3:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2008/06/29:utmpname:3:getutent:3: -ï¼ :LDP man-pages:3.31:2008/06/29:utmpxname:3:getutent:3: -ï¼ :LDP man-pages:3.31:2001/10/14:va_arg:3:stdarg:3: -ï¼ :LDP man-pages:3.31:2001/10/14:va_copy:3:stdarg:3: -ï¼ :LDP man-pages:3.31:2001/10/14:va_end:3:stdarg:3: -ï¼ :LDP man-pages:3.31:2001/10/14:va_start:3:stdarg:3: -ï¼ :LDP man-pages:3.31:2010/09/20:valloc:3:posix_memalign:3: -ï¼ :LDP man-pages:3.31:2001/12/18:vasprintf:3:asprintf:3: -ï¼ :LDP man-pages:3.31:2010/09/15:vdprintf:3:dprintf:3: -ï¼ :LDP man-pages:3.31:2007/12/28:verr:3:err:3: -ï¼ :LDP man-pages:3.31:2007/12/28:verrx:3:err:3: -ï¼ :LDP man-pages:3.31:2009/02/10:versionsort:3:scandir:3: -ï¼ :LDP man-pages:3.31:2010/09/20:vfprintf:3:printf:3: -ï¼ :LDP man-pages:3.31:2010/09/20:vfscanf:3:scanf:3: -ï¼ :LDP man-pages:3.31:2010/09/20:vfwprintf:3:wprintf:3: -ï¼ :LDP man-pages:3.31:2010/11/06:vlimit:3:getrlimit:2: -ï¼ :LDP man-pages:3.31:2010/09/20:vprintf:3:printf:3: -ï¼ :LDP man-pages:3.31:2010/09/20:vscanf:3:scanf:3: -ï¼ :LDP man-pages:3.31:2010/09/20:vsnprintf:3:printf:3: -ï¼ :LDP man-pages:3.31:2010/09/20:vsprintf:3:printf:3: -ï¼ :LDP man-pages:3.31:2010/09/20:vsscanf:3:scanf:3: -ï¼ :LDP man-pages:3.31:2010/09/20:vswprintf:3:wprintf:3: -ï¼ :LDP man-pages:3.31:2008/11/12:vsyslog:3:syslog:3: -ï¼ :LDP man-pages:3.31:2010/09/26:vtimes:3:getrusage:2: -ï¼ :LDP man-pages:3.31:2007/12/28:vwarn:3:err:3: -ï¼ :LDP man-pages:3.31:2007/12/28:vwarnx:3:err:3: -ï¼ :LDP man-pages:3.31:2010/09/20:vwprintf:3:wprintf:3: -ï¼ :LDP man-pages:3.31:2007/12/28:warn:3:err:3: -ï¼ :LDP man-pages:3.31:2007/12/28:warnx:3:err:3: -○:LDP man-pages:3.31:2010/09/15:wcpcpy:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.31:2010/09/15:wcpncpy:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.31:1999/07/25:wcrtomb:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.31:2010/09/15:wcscasecmp:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.31:1999/07/25:wcscat:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.31:1999/07/25:wcschr:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.31:1999/07/25:wcscmp:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.31:1999/07/25:wcscpy:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.31:1999/07/25:wcscspn:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.31:2010/09/15:wcsdup:3:2004/06/13::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.31:1999/07/25:wcslen:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.31:2010/09/15:wcsncasecmp:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.31:1999/07/25:wcsncat:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.31:1999/07/25:wcsncmp:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.31:1999/07/25:wcsncpy:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.31:2010/09/15:wcsnlen:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.31:2010/09/15:wcsnrtombs:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.31:1999/07/25:wcspbrk:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.31:1999/07/25:wcsrchr:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.31:1999/07/25:wcsrtombs:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.31:1999/07/25:wcsspn:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.31:1999/07/25:wcsstr:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.31:2003/11/01:wcstoimax:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.31:1999/07/25:wcstok:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.31:1999/07/25:wcstombs:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -ï¼ :LDP man-pages:3.31:2003/11/01:wcstoumax:3:wcstoimax:3: -○:LDP man-pages:3.31:2010/09/10:wcswidth:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.31:2009/02/04:wctob:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.31:1999/07/25:wctomb:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -○:LDP man-pages:3.31:1999/07/25:wctrans:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.31:1999/07/25:wctype:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.31:1999/07/25:wcwidth:3:2002/08/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:1999/07/25:wmemchr:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.31:1999/07/25:wmemcmp:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.31:1999/07/25:wmemcpy:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.31:1999/07/25:wmemmove:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -ï¼ :LDP man-pages:3.31:2008/08/12:wmempcpy:3:mempcpy:3: -○:LDP man-pages:3.31:1999/07/25:wmemset:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.31:2008/07/14:wordexp:3:2004/09/29::ysato444@yahoo.co.jp:Yuichi SATO: -ï¼ :LDP man-pages:3.31:2008/07/14:wordfree:3:wordexp:3: -○:LDP man-pages:3.31:2010/09/20:wprintf:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -○:LDP man-pages:3.31:2003/04/04:xcrypt:3:2004/10/16::ysato444@yahoo.co.jp:Yuichi SATO: -ï¼ :LDP man-pages:3.31:2003/04/04:xdecrypt:3:xcrypt:3: -○:LDP man-pages:3.31:2007/12/30:xdr:3:2000/01/14::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -ï¼ :LDP man-pages:3.31:2008/07/17:xdr_accepted_reply:3:rpc:3: -ï¼ :LDP man-pages:3.31:2007/12/30:xdr_array:3:xdr:3: -ï¼ :LDP man-pages:3.31:2008/07/17:xdr_authunix_parms:3:rpc:3: -ï¼ :LDP man-pages:3.31:2007/12/30:xdr_bool:3:xdr:3: -ï¼ :LDP man-pages:3.31:2007/12/30:xdr_bytes:3:xdr:3: -ï¼ :LDP man-pages:3.31:2008/07/17:xdr_callhdr:3:rpc:3: -ï¼ :LDP man-pages:3.31:2008/07/17:xdr_callmsg:3:rpc:3: -ï¼ :LDP man-pages:3.31:2007/12/30:xdr_char:3:xdr:3: -ï¼ :LDP man-pages:3.31:2007/12/30:xdr_destroy:3:xdr:3: -ï¼ :LDP man-pages:3.31:2007/12/30:xdr_double:3:xdr:3: -ï¼ :LDP man-pages:3.31:2007/12/30:xdr_enum:3:xdr:3: -ï¼ :LDP man-pages:3.31:2007/12/30:xdr_float:3:xdr:3: -ï¼ :LDP man-pages:3.31:2007/12/30:xdr_free:3:xdr:3: -ï¼ :LDP man-pages:3.31:2007/12/30:xdr_getpos:3:xdr:3: -ï¼ :LDP man-pages:3.31:2007/12/30:xdr_inline:3:xdr:3: -ï¼ :LDP man-pages:3.31:2007/12/30:xdr_int:3:xdr:3: -ï¼ :LDP man-pages:3.31:2007/12/30:xdr_long:3:xdr:3: -ï¼ :LDP man-pages:3.31:2007/12/30:xdr_opaque:3:xdr:3: -ï¼ :LDP man-pages:3.31:2008/07/17:xdr_opaque_auth:3:rpc:3: -ï¼ :LDP man-pages:3.31:2008/07/17:xdr_pmap:3:rpc:3: -ï¼ :LDP man-pages:3.31:2008/07/17:xdr_pmaplist:3:rpc:3: -ï¼ :LDP man-pages:3.31:2007/12/30:xdr_pointer:3:xdr:3: -ï¼ :LDP man-pages:3.31:2007/12/30:xdr_reference:3:xdr:3: -ï¼ :LDP man-pages:3.31:2008/07/17:xdr_rejected_reply:3:rpc:3: -ï¼ :LDP man-pages:3.31:2008/07/17:xdr_replymsg:3:rpc:3: -ï¼ :LDP man-pages:3.31:2007/12/30:xdr_setpos:3:xdr:3: -ï¼ :LDP man-pages:3.31:2007/12/30:xdr_short:3:xdr:3: -ï¼ :LDP man-pages:3.31:2007/12/30:xdr_string:3:xdr:3: -ï¼ :LDP man-pages:3.31:2007/12/30:xdr_u_char:3:xdr:3: -ï¼ :LDP man-pages:3.31:2007/12/30:xdr_u_int:3:xdr:3: -ï¼ :LDP man-pages:3.31:2007/12/30:xdr_u_long:3:xdr:3: -ï¼ :LDP man-pages:3.31:2007/12/30:xdr_u_short:3:xdr:3: -ï¼ :LDP man-pages:3.31:2007/12/30:xdr_union:3:xdr:3: -ï¼ :LDP man-pages:3.31:2007/12/30:xdr_vector:3:xdr:3: -ï¼ :LDP man-pages:3.31:2007/12/30:xdr_void:3:xdr:3: -ï¼ :LDP man-pages:3.31:2007/12/30:xdr_wrapstring:3:xdr:3: -ï¼ :LDP man-pages:3.31:2007/12/30:xdrmem_create:3:xdr:3: -ï¼ :LDP man-pages:3.31:2007/12/30:xdrrec_create:3:xdr:3: -ï¼ :LDP man-pages:3.31:2007/12/30:xdrrec_endofrecord:3:xdr:3: -ï¼ :LDP man-pages:3.31:2007/12/30:xdrrec_eof:3:xdr:3: -ï¼ :LDP man-pages:3.31:2007/12/30:xdrrec_skiprecord:3:xdr:3: -ï¼ :LDP man-pages:3.31:2007/12/30:xdrstdio_create:3:xdr:3: -ï¼ :LDP man-pages:3.31:2003/04/04:xencrypt:3:xcrypt:3: -ï¼ :LDP man-pages:3.31:2008/07/17:xprt_register:3:rpc:3: -ï¼ :LDP man-pages:3.31:2008/07/17:xprt_unregister:3:rpc:3: -○:LDP man-pages:3.31:2008/08/10:y0:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2008/08/10:y0f:3:y0:3: -ï¼ :LDP man-pages:3.31:2008/08/10:y0l:3:y0:3: -ï¼ :LDP man-pages:3.31:2008/08/10:y1:3:y0:3: -ï¼ :LDP man-pages:3.31:2008/08/10:y1f:3:y0:3: -ï¼ :LDP man-pages:3.31:2008/08/10:y1l:3:y0:3: -ï¼ :LDP man-pages:3.31:2008/08/10:yn:3:y0:3: -ï¼ :LDP man-pages:3.31:2008/08/10:ynf:3:y0:3: -ï¼ :LDP man-pages:3.31:2008/08/10:ynl:3:y0:3: -○:LDP man-pages:3.31:1994/10/31:console:4:2002/01/14:o:argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.31:2008/01/01:console_codes:4:2008/10/08::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.31:2009/02/28:console_ioctl:4:2008/07/22::argrath@ub32.org:Kentaro Shirakata: -×:LDP man-pages:3.31:2009/03/31:cpuid:4::::: -○:LDP man-pages:3.31:2000/03/01:dsp56k:4:2000/07/11::sato@complex.eng.hokudai.ac.jp:Yuichi SATO: -ï¼ :LDP man-pages:3.31:2009/02/01:epoll:4:epoll:7: -○:LDP man-pages:3.31:2010/08/29:fd:4:1998/01/12:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi: -ï¼ :LDP man-pages:3.31:2008/12/03:fifo:4:fifo:7: -○:LDP man-pages:3.31:1997/08/02:full:4:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2002/12/31:futex:4:futex:7: -○:LDP man-pages:3.31:1992/12/17:hd:4:1998/02/05:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi: -○:LDP man-pages:3.31:2010/09/04:initrd:4:2005/10/09:o:amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2007/10/23:intro:4:1998/02/05:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi: -ï¼ :LDP man-pages:3.31:1992/11/21:kmem:4:mem:4: -○:LDP man-pages:3.31:1995/01/15:lp:4:1998/02/05:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi: -○:LDP man-pages:3.31:1992/11/21:mem:4:1998/02/05:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi: -○:LDP man-pages:3.31:1996/02/10:mouse:4:1999/03/24:o:ss236rx@ymg.urban.ne.jp:Shouichi Saito: -×:LDP man-pages:3.31:2009/03/31:msr:4::::: -○:LDP man-pages:3.31:2009/02/23:null:4:1998/02/05:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi: -ï¼ :LDP man-pages:3.31:1992/11/21:port:4:mem:4: -ï¼ :LDP man-pages:3.31:2002/10/09:ptmx:4:pts:4: -○:LDP man-pages:3.31:2002/10/09:pts:4:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:1992/11/21:ram:4:1997/01/12:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi: -○:LDP man-pages:3.31:2010/08/29:random:4:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/02/25:rtc:4:2007/02/08::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.31:1992/12/17:sd:4:1998/02/05::ishikawa@linux.or.jp:ISHIKAWA Mutsumi: -○:LDP man-pages:3.31:2007/11/25:sk98lin:4:2007/06/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/09/04:st:4:2005/06/12::nakano@st.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.31:2003/04/07:tty:4:2003/09/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:1992/12/19:ttyS:4:1998/02/05::ishikawa@linux.or.jp:ISHIKAWA Mutsumi: -○:LDP man-pages:3.31:2008/10/29:tty_ioctl:4:2004/11/16::ysato444@yahoo.co.jp:Yuichi SATO: -ï¼ :LDP man-pages:3.31:2010/08/29:urandom:4:random:4: -○:LDP man-pages:3.31:2007/12/17:vcs:4:2001/02/11::sato@complex.eng.hokudai.ac.jp:Yuichi SATO: -ï¼ :LDP man-pages:3.31:2007/12/17:vcsa:4:vcs:4: -○:LDP man-pages:3.31:1996/10/22:wavelan:4:1998/02/10::ishikawa@linux.or.jp:ISHIKAWA Mutsumi: -ï¼ :LDP man-pages:3.31:2009/02/23:zero:4:null:4: -○:LDP man-pages:3.31:2008/06/15:acct:5:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:1994/11/28:charmap:5:2008/07/22::argrath@ub32.org:Kentaro Shirakata: -ï¼ :LDP man-pages:3.31:2009/07/25:complex:5:complex:7: -○:LDP man-pages:3.31:2010/02/27:core:5:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2001/12/26:dir_colors:5:2002/01/14::ysato@h4.dion.ne.jp:Yuichi SATO: -☆:LDP man-pages:3.24=>3.31:2010/06/19:elf:5:2005/11/03::ysato444@yahoo.co.jp:Yuichi SATO: -ï¼ :LDP man-pages:3.31:2009/07/25:environ:5:environ:7: -☆:LDP man-pages:3.24=>3.31:2010/05/24:filesystems:5:2008/02/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2010/05/24:fs:5:filesystems:5: -○:LDP man-pages:3.31:2000/08/27:ftpusers:5:2001/03/12::nakano@apm.seikei.ac.jp:NAKANO Takeo: -☆:LDP man-pages:3.29=>3.31:2010/10/21:group:5:2005/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2003/08/23:host.conf:5:2003/10/15::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.31:2002/06/16:hosts:5:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2003/08/24:hosts.equiv:5:2005/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2007/10/23:intro:5:1998/10/13::nakano@apm.seikei.ac.jp:NAKANO Takeo: -ï¼ :LDP man-pages:3.31:2009/01/26:ipc:5:svipc:7: -○:LDP man-pages:3.31:1993/07/24:issue:5:1998/07/25::nakano@apm.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.31:2008/06/17:locale:5:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:1992/12/29:motd:5:1998/2/4::nagoya@cc.hit-u.ac.jp:Hiroaki Nagoya: -×:LDP man-pages:3.31:2008/09/04:networks:5::::: -○:LDP man-pages:3.31:1992/12/29:nologin:5:1998/02/18::rui@linux.or.jp:Ueyama Rui: -○:LDP man-pages:3.31:1999/10/01:nscd.conf:5:2006/07/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:1999/01/17:nsswitch.conf:5:2001/10/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -※:LDP man-pages:3.31:2008/08/15:numa_maps:5:numa:7: -☆:LDP man-pages:3.29=>3.31:2010/10/21:passwd:5:2006/07/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -☆:LDP man-pages:3.24=>3.31:2010/10/30:proc:5:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2008/09/23:protocols:5:2008/07/22::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.31:2009/03/01:resolv.conf:5:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2009/03/01:resolver:5:resolv.conf:5: -○:LDP man-pages:3.31:1985/09/26:rpc:5:2008/07/22::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.31:1992/12/29:securetty:5:2003/01/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/05/22:services:5:2002/08/14::amotoki@dd.iij4u.or.jp:Akihiro Motoki: -○:LDP man-pages:3.31:1993/11/21:shells:5:2000/12/11::nakano@apm.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.31:2001/06/19:slabinfo:5:2001/09/10::nakano@apm.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.31:1996/10/21:termcap:5:2000/10/12::nakano@apm.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.31:1993/07/24:ttytype:5:1998/02/10::nakano@apm.seikei.ac.jp:NAKANO Takeo: -☆:LDP man-pages:3.25=>3.31:2010/08/31:tzfile:5:1999/09/14::nakano@apm.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.31:2008/10/10:utmp:5:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2008/10/10:utmpx:5:utmp:5: -ï¼ :LDP man-pages:3.31:2008/10/10:wtmp:5:utmp:5: -○:LDP man-pages:3.31:2007/10/23:intro:6:1997/11/15::pessi@kmc.kyoto-u.ac.jp:II Ryouta: -×:LDP man-pages:3.31:2010/10/02:aio:7::::: -×:LDP man-pages:3.31:2010/09/20:armscii-8:7::::: -○:LDP man-pages:3.31:2008/11/25:arp:7:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2009/02/12:ascii:7:2006/04/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/09/19:boot:7:2005/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2007/12/16:bootparam:7:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/06/19:capabilities:7:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2008/06/03:charsets:7:2008/07/22::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.31:2009/07/25:complex:7:2006/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -×:LDP man-pages:3.31:2010/09/20:cp1251:7::::: -×:LDP man-pages:3.31:2008/11/12:cpuset:7::::: -○:LDP man-pages:3.31:2008/06/03:credentials:7:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2008/11/20:ddp:7:1999/12/06::nakano@apm.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.31:2009/07/25:environ:7:2006/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2009/02/01:epoll:7:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/09/10:feature_test_macros:7:2007/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2008/12/03:fifo:7:2006/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2002/12/31:futex:7:2006/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -※:LDP man-pages:3.31:2009/01/13:glibc:7:libc:7: -○:LDP man-pages:3.31:2003/08/24:glob:7:2003/09/28::nakano@apm.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.31:2009/03/30:hier:7:2002/01/14::nakano@apm.seikei.ac.jp:NAKANO Takeo: -×:LDP man-pages:3.31:2010/11/07:hostname:7::::: -○:LDP man-pages:3.31:2010/02/25:icmp:7:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -☆:LDP man-pages:3.25=>3.31:2010/11/12:inotify:7:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:1993/04/23:intro:7:2005/12/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -☆:LDP man-pages:3.25=>3.31:2010/10/24:ip:7:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2009/02/28:ipv6:7:2006/01/14::ysato444@yahoo.co.jp:Yuichi SATO: -ï¼ :LDP man-pages:3.31:1999/05/31:iso-8859-1:7:iso_8859-1:7: -※:LDP man-pages:3.31:2010/09/20:iso-8859-10:7:iso_8859-10:7: -※:LDP man-pages:3.31:2010/09/20:iso-8859-11:7:iso_8859-11:7: -※:LDP man-pages:3.31:2010/09/20:iso-8859-13:7:iso_8859-13:7: -※:LDP man-pages:3.31:2010/09/20:iso-8859-14:7:iso_8859-14:7: -ï¼ :LDP man-pages:3.31:1999/05/31:iso-8859-15:7:iso_8859-15:7: -ï¼ :LDP man-pages:3.31:2003/03/05:iso-8859-16:7:iso_8859-16:7: -ï¼ :LDP man-pages:3.31:2007/11/25:iso-8859-2:7:iso_8859-2:7: -※:LDP man-pages:3.31:2010/09/20:iso-8859-3:7:iso_8859-3:7: -※:LDP man-pages:3.31:2009/01/24:iso-8859-4:7:iso_8859-4:7: -※:LDP man-pages:3.31:2010/09/20:iso-8859-5:7:iso_8859-5:7: -※:LDP man-pages:3.31:2010/09/20:iso-8859-6:7:iso_8859-6:7: -ï¼ :LDP man-pages:3.31:2008/10/30:iso-8859-7:7:iso_8859-7:7: -※:LDP man-pages:3.31:2010/09/20:iso-8859-8:7:iso_8859-8:7: -ï¼ :LDP man-pages:3.31:2002/09/24:iso-8859-9:7:iso_8859-9:7: -○:LDP man-pages:3.31:1999/05/31:iso_8859-1:7:2002/09/14::argrath@ub32.org:Kentaro Shirakata: -×:LDP man-pages:3.31:2010/09/20:iso_8859-10:7::::: -×:LDP man-pages:3.31:2010/09/20:iso_8859-11:7::::: -×:LDP man-pages:3.31:2010/09/20:iso_8859-13:7::::: -×:LDP man-pages:3.31:2010/09/20:iso_8859-14:7::::: -○:LDP man-pages:3.31:1999/05/31:iso_8859-15:7:2002/09/28::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -○:LDP man-pages:3.31:2003/03/05:iso_8859-16:7:2003/09/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2007/11/25:iso_8859-2:7:2002/09/28::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -×:LDP man-pages:3.31:2010/09/20:iso_8859-3:7::::: -×:LDP man-pages:3.31:2009/01/24:iso_8859-4:7::::: -×:LDP man-pages:3.31:2010/09/20:iso_8859-5:7::::: -×:LDP man-pages:3.31:2010/09/20:iso_8859-6:7::::: -○:LDP man-pages:3.31:2008/10/30:iso_8859-7:7:2002/09/28::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -×:LDP man-pages:3.31:2010/09/20:iso_8859-8:7::::: -○:LDP man-pages:3.31:2002/09/24:iso_8859-9:7:2003/01/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:1999/05/31:iso_8859_1:7:iso_8859-1:7: -※:LDP man-pages:3.31:2010/09/20:iso_8859_10:7:iso_8859-10:7: -※:LDP man-pages:3.31:2010/09/20:iso_8859_11:7:iso_8859-11:7: -※:LDP man-pages:3.31:2010/09/20:iso_8859_13:7:iso_8859-13:7: -※:LDP man-pages:3.31:2010/09/20:iso_8859_14:7:iso_8859-14:7: -ï¼ :LDP man-pages:3.31:1999/05/31:iso_8859_15:7:iso_8859-15:7: -ï¼ :LDP man-pages:3.31:2003/03/05:iso_8859_16:7:iso_8859-16:7: -ï¼ :LDP man-pages:3.31:2007/11/25:iso_8859_2:7:iso_8859-2:7: -※:LDP man-pages:3.31:2010/09/20:iso_8859_3:7:iso_8859-3:7: -※:LDP man-pages:3.31:2009/01/24:iso_8859_4:7:iso_8859-4:7: -※:LDP man-pages:3.31:2010/09/20:iso_8859_5:7:iso_8859-5:7: -※:LDP man-pages:3.31:2010/09/20:iso_8859_6:7:iso_8859-6:7: -ï¼ :LDP man-pages:3.31:2008/10/30:iso_8859_7:7:iso_8859-7:7: -※:LDP man-pages:3.31:2010/09/20:iso_8859_8:7:iso_8859-8:7: -ï¼ :LDP man-pages:3.31:2002/09/24:iso_8859_9:7:iso_8859-9:7: -○:LDP man-pages:3.31:2010/10/24:koi8-r:7:2001/07/14::ysato@h4.dion.ne.jp:Yuichi SATO: -×:LDP man-pages:3.31:2010/09/20:koi8-u:7::::: -ï¼ :LDP man-pages:3.31:1999/05/31:latin1:7:iso_8859-1:7: -ï¼ :LDP man-pages:3.31:2003/03/05:latin10:7:iso_8859-16:7: -ï¼ :LDP man-pages:3.31:2007/11/25:latin2:7:iso_8859-2:7: -※:LDP man-pages:3.31:2010/09/20:latin3:7:iso_8859-3:7: -※:LDP man-pages:3.31:2009/01/24:latin4:7:iso_8859-4:7: -ï¼ :LDP man-pages:3.31:2002/09/24:latin5:7:iso_8859-9:7: -※:LDP man-pages:3.31:2010/09/20:latin6:7:iso_8859-10:7: -※:LDP man-pages:3.31:2010/09/20:latin7:7:iso_8859-13:7: -※:LDP man-pages:3.31:2010/09/20:latin8:7:iso_8859-14:7: -ï¼ :LDP man-pages:3.31:1999/05/31:latin9:7:iso_8859-15:7: -×:LDP man-pages:3.31:2009/01/13:libc:7::::: -○:LDP man-pages:3.31:2008/12/05:locale:7:2006/02/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2004/09/15:mailaddr:7:2005/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2007/05/30:man:7:2007/06/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2008/10/28:man-pages:7:2008/02/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2008/08/11:math_error:7:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:0000/00/00:mdoc:7:2008/10/08::argrath@ub32.org:Kentaro Shirakata: -ï¼£:LDP man-pages:3.31: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.31:2009/09/27:mq_overview:7:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2009/01/14:netdevice:7:2009/03/05::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.31:2008/11/11:netlink:7:2006/07/12::ysato444@yahoo.co.jp:Yuichi SATO: -×:LDP man-pages:3.31:2008/08/15:numa:7::::: -○:LDP man-pages:3.31:2004/08/24:operator:7:2004/11/16::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.31:2008/08/08:packet:7:2005/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2009/12/05:path_resolution:7:2007/06/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2005/12/08:pipe:7:2005/12/27::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2007/12/21:posixoptions:7:2005/01/14::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.31:2008/11/18:pthreads:7:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2005/10/10:pty:7:2005/10/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2008/11/20:raw:7:2007/01/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2009/01/12:regex:7:1998/07/08::nakano@apm.seikei.ac.jp:NAKANO Takeo: -×:LDP man-pages:3.31:2010/09/10:rtld-audit:7::::: -○:LDP man-pages:3.31:2008/08/08:rtnetlink:7:2001/03/11::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.31:2010/05/22:sem_overview:7:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/09/10:shm_overview:7:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -×:LDP man-pages:3.31:2010/10/04:sigevent:7::::: -○:LDP man-pages:3.31:2010/09/19:signal:7:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -☆:LDP man-pages:3.24=>3.31:2010/06/13:socket:7:2007/01/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -☆:LDP man-pages:2.67=>3.31:2007/12/20:spufs:7:2007/10/23::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2009/06/01:standards:7:2006/08/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2000/11/16:suffixes:7:2001/04/24::ysato@h4.dion.ne.jp:Yuichi SATO: -○:LDP man-pages:3.31:2009/01/26:svipc:7:2006/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -×:LDP man-pages:3.31:2008/06/18:symlink:7::::: -☆:LDP man-pages:3.25=>3.31:2010/09/10:tcp:7:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2006/12/28:termio:7:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2010/02/25:time:7:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -※:LDP man-pages:3.31:2010/09/20:tis-620:7:iso_8859-11:7: -☆:LDP man-pages:3.24=>3.31:2010/06/13:udp:7:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2008/12/03:udplite:7:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2001/05/11:unicode:7:2001/07/14::ysato@h4.dion.ne.jp:Yuichi SATO: -○:LDP man-pages:3.31:2001/12/22:units:7:2002/01/14::nakano@apm.seikei.ac.jp:NAKANO Takeo: -☆:LDP man-pages:3.25=>3.31:2010/10/10:unix:7:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31:2000/03/14:uri:7:2008/07/22::argrath@ub32.org:Kentaro Shirakata: -ï¼ :LDP man-pages:3.31:2000/03/14:url:7:uri:7: -ï¼ :LDP man-pages:3.31:2000/03/14:urn:7:uri:7: -○:LDP man-pages:3.31:2001/05/11:utf-8:7:2001/07/14::ysato@h4.dion.ne.jp:Yuichi SATO: -ï¼ :LDP man-pages:3.31:2001/05/11:utf8:7:utf-8:7: -○:LDP man-pages:3.31:2008/08/08:x25:7:1999/12/06::nakano@apm.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.31:2007/10/23:intro:8:2008/02/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -ï¼ :LDP man-pages:3.31:2009/01/12:ld-linux:8:ld.so:8: -ï¼ :LDP man-pages:3.31:2009/01/12:ld-linux.so:8:ld.so:8: -○:LDP man-pages:3.31:2009/01/12:ld.so:8:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.31: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.31:2008/12/05:nscd:8:2009/03/14::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.31:1998/11/01:sync:8:2000/06/13::sato@complex.eng.hokudai.ac.jp:Yuichi SATO: -○:LDP man-pages:3.31:2007/05/18:tzselect:8:2002/01/14::ysato@h4.dion.ne.jp:Yuichi SATO: -○:LDP man-pages:3.31:0000/00/00:zdump:8:1999/09/14::nakano@apm.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.31:2010/02/25:zic:8:2001/04/04::sato@complex.eng.hokudai.ac.jp:Yuichi SATO: +○:LDP man-pages:3.32:2007/11/15:intro:1:2008/02/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2000/10/30:ldd:1:2002/02/14::ysato@h4.dion.ne.jp:Yuichi SATO: +○:LDP man-pages:3.32:2008/11/14:time:1:2008/11/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:_Exit:2:_exit:2: +ï¼ :LDP man-pages:3.32:2010/11/01:__clone2:2:clone:2: +○:LDP man-pages:3.32:2010/09/20:_exit:2:2001/12/14::ysato@h4.dion.ne.jp:Yuichi SATO: +ï¼ :LDP man-pages:3.32:1995/06/10:_llseek:2:llseek:2: +ï¼ :LDP man-pages:3.32:2010/08/31:_newselect:2:select:2: +○:LDP man-pages:3.32:2007/12/19:_syscall:2:2008/02/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2008/11/20:_sysctl:2:sysctl:2: +○:LDP man-pages:3.32:2010/09/10:accept:2:2008/12/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/10:accept4:2:accept:2: +☆:LDP man-pages:3.29=>3.32:2010/10/24:access:2:2007/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2008/06/16:acct:2:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: +×:LDP man-pages:3.32:2010/02/25:add_key:2::::: +○:LDP man-pages:3.32:2004/05/27:adjtimex:2:2006/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2007/07/05:afs_syscall:2:unimplemented:2: +○:LDP man-pages:3.32:2008/06/12:alarm:2:1997/02/22::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +○:LDP man-pages:3.32:2007/05/31:alloc_hugepages:2:2007/06/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2007/12/26:arch_prctl:2:2005/11/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/10/09:arm_fadvise:2:posix_fadvise:2: +ï¼ :LDP man-pages:3.32:2010/10/09:arm_fadvise64_64:2:posix_fadvise:2: +ï¼ :LDP man-pages:3.32:2010/10/09:arm_sync_file_range:2:sync_file_range:2: +○:LDP man-pages:3.32:2004/06/17:bdflush:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.32:2007/12/28:bind:2:2007/06/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2007/07/05:break:2:unimplemented:2: +○:LDP man-pages:3.32:2010/09/20:brk:2:2007/02/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2007/05/26:cacheflush:2:2005/10/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2010/09/20:capget:2:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:capset:2:capget:2: +☆:LDP man-pages:3.31=>3.32:2010/11/25:chdir:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.32:2010/09/26:chmod:2:2005/01/14::ysato444@yahoo.co.jp:Yuichi SATO: +☆:LDP man-pages:3.31=>3.32:2010/11/22:chown:2:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: +ï¼ :LDP man-pages:3.32:2010/11/22:chown32:2:chown:2: +○:LDP man-pages:3.32:2010/09/20:chroot:2:2005/01/14::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.32:2010/02/03:clock_getres:2:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: +ï¼ :LDP man-pages:3.32:2010/02/03:clock_gettime:2:clock_getres:2: +☆:LDP man-pages:3.31=>3.32:2010/12/03:clock_nanosleep:2:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/02/03:clock_settime:2:clock_getres:2: +○:LDP man-pages:3.32:2010/11/01:clone:2:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/11/01:clone2:2:clone:2: +○:LDP man-pages:3.32:2007/12/28:close:2:2007/10/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2008/12/03:connect:2:2005/10/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/11/15:creat:2:open:2: +○:LDP man-pages:3.32:2007/06/03:create_module:2:2006/07/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:0000/00/00:delete_module:2:2006/07/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2010/09/10:dup:2:2005/09/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/10:dup2:2:dup:2: +ï¼ :LDP man-pages:3.32:2010/09/10:dup3:2:dup:2: +☆:LDP man-pages:3.31=>3.32:2010/12/03:epoll_create:2:2009/03/14::argrath@ub32.org:Kentaro Shirakata: +ï¼ :LDP man-pages:3.32:2010/12/03:epoll_create1:2:epoll_create:2: +☆:LDP man-pages:3.31=>3.32:2010/12/03:epoll_ctl:2:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/12/03:epoll_pwait:2:epoll_wait:2: +☆:LDP man-pages:3.31=>3.32:2010/12/03:epoll_wait:2:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.25=>3.32:2010/08/30:eventfd:2:2008/11/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/08/30:eventfd2:2:eventfd:2: +○:LDP man-pages:3.32:2010/01/06:execve:2:2008/04/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:exit:2:_exit:2: +○:LDP man-pages:3.32:2008/11/27:exit_group:2:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: +☆:LDP man-pages:3.29=>3.32:2010/10/24:faccessat:2:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/10/09:fadvise64:2:posix_fadvise:2: +ï¼ :LDP man-pages:3.32:2010/10/09:fadvise64_64:2:posix_fadvise:2: +○:LDP man-pages:3.32:2010/09/10:fallocate:2:2007/10/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/11/25:fchdir:2:chdir:2: +ï¼ :LDP man-pages:3.32:2010/09/26:fchmod:2:chmod:2: +○:LDP man-pages:3.32:2009/12/13:fchmodat:2:2006/12/28::ysato444@yahoo.co.jp:Yuichi SATO: +ï¼ :LDP man-pages:3.32:2010/11/22:fchown:2:chown:2: +ï¼ :LDP man-pages:3.32:2010/09/26:fchown32:2:fchown:2: +○:LDP man-pages:3.32:2009/12/13:fchownat:2:2006/12/28::ysato444@yahoo.co.jp:Yuichi SATO: +☆:LDP man-pages:3.24=>3.32:2010/11/21:fcntl:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/11/21:fcntl64:2:fcntl:2: +ï¼ :LDP man-pages:3.32:2008/11/07:fdatasync:2:fsync:2: +ï¼ :LDP man-pages:3.32:2001/12/01:fgetxattr:2:getxattr:2: +ï¼ :LDP man-pages:3.32:2001/12/01:flistxattr:2:listxattr:2: +○:LDP man-pages:3.32:2009/07/25:flock:2:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2009/04/27:fork:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2007/05/31:free_hugepages:2:alloc_hugepages:2: +ï¼ :LDP man-pages:3.32:2001/12/01:fremovexattr:2:removexattr:2: +ï¼ :LDP man-pages:3.32:2001/12/31:fsetxattr:2:setxattr:2: +ï¼ :LDP man-pages:3.32:2010/12/03:fstat:2:stat:2: +ï¼ :LDP man-pages:3.32:2010/09/26:fstat64:2:fstat:2: +☆:LDP man-pages:3.31=>3.32:2010/11/21:fstatat:2:2006/12/28::ysato444@yahoo.co.jp:Yuichi SATO: +ï¼ :LDP man-pages:3.32:2010/11/21:fstatat64:2:fstatat:2: +ï¼ :LDP man-pages:3.32:2010/11/21:fstatfs:2:statfs:2: +ï¼ :LDP man-pages:3.32:2010/09/04:fstatfs64:2:fstatfs:2: +ï¼ :LDP man-pages:3.32:2003/08/22:fstatvfs:2:statvfs:3: +○:LDP man-pages:3.32:2008/11/07:fsync:2:2007/10/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/11/21:ftruncate:2:truncate:2: +ï¼ :LDP man-pages:3.32:2010/11/21:ftruncate64:2:ftruncate:2: +○:LDP man-pages:3.32:2010/08/29:futex:2:2007/02/08::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.32:2009/12/13:futimesat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.32:0000/00/00:get_kernel_syms:2:2006/07/31::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2008/08/15:get_mempolicy:2:2008/11/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2008/11/27:get_thread_area:2:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2009/03/15:getcontext:2:2001/12/15::nakano@apm.seikei.ac.jp:NAKANO Takeo: +×:LDP man-pages:3.32:2008/06/03:getcpu:2::::: +ï¼ :LDP man-pages:3.32:2010/09/20:getcwd:2:getcwd:3: +☆:LDP man-pages:3.31=>3.32:2010/11/21:getdents:2:2009/03/05::argrath@ub32.org:Kentaro Shirakata: +ï¼ :LDP man-pages:3.32:2010/11/21:getdents64:2:getdents:2: +○:LDP man-pages:3.32:2009/09/27:getdomainname:2:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2010/09/20:getdtablesize:2:2007/01/14::argrath@ub32.org:Kentaro Shirakata: +ï¼ :LDP man-pages:3.32:2010/11/22:getegid:2:getgid:2: +ï¼ :LDP man-pages:3.32:1993/07/23:getegid32:2:getegid:2: +ï¼ :LDP man-pages:3.32:2010/11/22:geteuid:2:getuid:2: +ï¼ :LDP man-pages:3.32:2010/11/22:geteuid32:2:geteuid:2: +☆:LDP man-pages:3.31=>3.32:2010/11/22:getgid:2:1997/06/26::suto@av.crl.sony.co.jp:SUTO, Mitsuaki: +ï¼ :LDP man-pages:3.32:2010/11/22:getgid32:2:getgid:2: +☆:LDP man-pages:3.31=>3.32:2010/11/22:getgroups:2:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/11/22:getgroups32:2:getgroups:2: +ï¼ :LDP man-pages:3.32:2010/09/20:gethostid:2:gethostid:3: +○:LDP man-pages:3.32:2010/09/26:gethostname:2:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2009/03/15:getitimer:2:2007/10/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.31=>3.32:2010/11/16:getpagesize:2:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2008/12/03:getpeername:2:2005/02/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/26:getpgid:2:setpgid:2: +ï¼ :LDP man-pages:3.32:2010/09/26:getpgrp:2:setpgid:2: +○:LDP man-pages:3.32:2008/09/23:getpid:2:1997/06/27::suto@av.crl.sony.co.jp:SUTO, Mitsuaki: +ï¼ :LDP man-pages:3.32:2007/07/05:getpmsg:2:unimplemented:2: +ï¼ :LDP man-pages:3.32:2008/09/23:getppid:2:getpid:2: +○:LDP man-pages:3.32:2008/05/29:getpriority:2:2005/10/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/11/22:getresgid:2:getresuid:2: +ï¼ :LDP man-pages:3.32:2007/12/28:getresgid32:2:getresgid:2: +☆:LDP man-pages:3.31=>3.32:2010/11/22:getresuid:2:2003/11/13::argrath@ub32.org:Kentaro Shirakata: +ï¼ :LDP man-pages:3.32:2010/11/22:getresuid32:2:getresuid:2: +☆:LDP man-pages:3.30=>3.32:2010/12/03:getrlimit:2:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.24=>3.32:2010/09/26:getrusage:2:2008/11/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2010/09/26:getsid:2:2002/02/03::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.32:2008/12/03:getsockname:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.32:2008/12/03:getsockopt:2:2008/07/24::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.32:2008/04/14:gettid:2:2003/09/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2009/03/25:gettimeofday:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.31=>3.32:2010/11/22:getuid:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: +ï¼ :LDP man-pages:3.32:2010/11/22:getuid32:2:getuid:2: +○:LDP man-pages:3.32:2001/12/01:getxattr:2:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2007/07/05:gtty:2:unimplemented:2: +○:LDP man-pages:3.32:1994/08/21:idle:2:2000/01/14::argrath@yo.rim.or.jp:Kentaro Shirakata: +ï¼ :LDP man-pages:3.32:1995/11/29:inb:2:outb:2: +ï¼ :LDP man-pages:3.32:1995/11/29:inb_p:2:outb:2: +○:LDP man-pages:3.32:0000/00/00:init_module:2:2006/07/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:1995/11/29:inl:2:outb:2: +ï¼ :LDP man-pages:3.32:1995/11/29:inl_p:2:outb:2: +☆:LDP man-pages:3.29=>3.32:2010/10/20:inotify_add_watch:2:2006/08/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2008/10/10:inotify_init:2:2006/08/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2008/10/10:inotify_init1:2:inotify_init:2: +○:LDP man-pages:3.32:2010/10/15:inotify_rm_watch:2:2006/08/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:1995/11/29:insb:2:outb:2: +ï¼ :LDP man-pages:3.32:1995/11/29:insl:2:outb:2: +ï¼ :LDP man-pages:3.32:1995/11/29:insw:2:outb:2: +○:LDP man-pages:3.32:2010/11/11:intro:2:2006/04/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:1995/11/29:inw:2:outb:2: +ï¼ :LDP man-pages:3.32:1995/11/29:inw_p:2:outb:2: +○:LDP man-pages:3.32:2008/06/18:io_cancel:2:2003/03/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2008/06/18:io_destroy:2:2003/03/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2008/07/04:io_getevents:2:2003/03/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2008/06/18:io_setup:2:2003/03/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2008/06/18:io_submit:2:2003/03/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2000/09/21:ioctl:2:2005/02/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2007/12/29:ioctl_list:2:2004/06/13::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.32:2007/06/15:ioperm:2:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2004/12/26:iopl:2:2005/02/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2008/07/09:ioprio_get:2:ioprio_set:2: +○:LDP man-pages:3.32:2008/07/09:ioprio_set:2:2007/01/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2007/06/28:ipc:2:1997/02/23::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +×:LDP man-pages:3.32:2010/11/04:kexec_load:2::::: +×:LDP man-pages:3.32:2010/02/25:keyctl:2::::: +○:LDP man-pages:3.32:2009/09/15:kill:2:2005/12/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2010/09/20:killpg:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: +ï¼ :LDP man-pages:3.32:2010/11/22:lchown:2:chown:2: +ï¼ :LDP man-pages:3.32:2010/09/26:lchown32:2:lchown:2: +ï¼ :LDP man-pages:3.32:2001/12/01:lgetxattr:2:getxattr:2: +○:LDP man-pages:3.32:2008/08/21:link:2:2005/05/12::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.32:2009/12/13:linkat:2:2007/01/21::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2008/11/20:listen:2:2008/07/23::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.32:2001/12/01:listxattr:2:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2001/12/01:llistxattr:2:listxattr:2: +○:LDP man-pages:3.32:1995/06/10:llseek:2:2005/01/14::ysato444@yahoo.co.jp:Yuichi SATO: +ï¼ :LDP man-pages:3.32:2007/07/05:lock:2:unimplemented:2: +○:LDP man-pages:3.32:2004/06/17:lookup_dcookie:2:2005/02/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2001/12/01:lremovexattr:2:removexattr:2: +○:LDP man-pages:3.32:2010/09/11:lseek:2:2006/03/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2001/12/31:lsetxattr:2:setxattr:2: +ï¼ :LDP man-pages:3.32:2010/12/03:lstat:2:stat:2: +ï¼ :LDP man-pages:3.32:2010/09/26:lstat64:2:lstat:2: +☆:LDP man-pages:3.24=>3.32:2010/06/20:madvise:2:2007/01/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2007/07/05:madvise1:2:unimplemented:2: +○:LDP man-pages:3.32:2008/08/15:mbind:2:2008/11/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +×:LDP man-pages:3.32:2010/11/01:migrate_pages:2::::: +○:LDP man-pages:3.32:2008/04/22:mincore:2:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.25=>3.32:2010/06/26:mkdir:2:2008/10/08::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.32:2009/12/13:mkdirat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.32:2010/09/20:mknod:2:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2010/09/20:mknodat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO: +☆:LDP man-pages:3.24=>3.32:2010/10/30:mlock:2:2006/02/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/10/30:mlockall:2:mlock:2: +☆:LDP man-pages:3.24=>3.32:2010/06/20:mmap:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2008/04/22:mmap2:2:2007/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2007/06/01:modify_ldt:2:2007/06/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2010/09/10:mount:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2010/06/11:move_pages:2:2008/11/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2008/08/06:mprotect:2:2007/06/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2007/07/05:mpx:2:unimplemented:2: +○:LDP man-pages:3.32:2010/08/29:mq_getsetattr:2:2006/07/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/10/04:mq_notify:2:mq_notify:3: +ï¼ :LDP man-pages:3.32:2009/02/20:mq_open:2:mq_open:3: +ï¼ :LDP man-pages:3.32:2010/09/20:mq_timedreceive:2:mq_receive:3: +ï¼ :LDP man-pages:3.32:2010/09/20:mq_timedsend:2:mq_send:3: +ï¼ :LDP man-pages:3.32:2010/08/29:mq_unlink:2:mq_unlink:3: +○:LDP man-pages:3.32:2010/06/10:mremap:2:2006/04/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2008/08/06:msgctl:2:2005/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2004/05/27:msgget:2:2005/03/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2008/04/23:msgop:2:2006/03/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2008/04/23:msgrcv:2:msgop:2: +ï¼ :LDP man-pages:3.32:2008/04/23:msgsnd:2:msgop:2: +○:LDP man-pages:3.32:2008/04/22:msync:2:2008/07/24::argrath@ub32.org:Kentaro Shirakata: +ï¼ :LDP man-pages:3.32:2010/10/30:munlock:2:mlock:2: +ï¼ :LDP man-pages:3.32:2010/10/30:munlockall:2:mlock:2: +ï¼ :LDP man-pages:3.32:2010/06/20:munmap:2:mmap:2: +○:LDP man-pages:3.32:2009/01/19:nanosleep:2:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:1997/07/16:nfsservctl:2:1997/08/30::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +○:LDP man-pages:3.32:2007/07/26:nice:2:2005/10/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/12/03:oldfstat:2:stat:2: +ï¼ :LDP man-pages:3.32:2010/12/03:oldlstat:2:stat:2: +ï¼ :LDP man-pages:3.32:2008/12/03:oldolduname:2:uname:2: +ï¼ :LDP man-pages:3.32:2010/12/03:oldstat:2:stat:2: +ï¼ :LDP man-pages:3.32:2008/12/03:olduname:2:uname:2: +☆:LDP man-pages:3.31=>3.32:2010/11/15:open:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2009/12/13:openat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.32:1995/11/29:outb:2:2005/10/30::argrath@ub32.org:Kentaro Shirakata: +ï¼ :LDP man-pages:3.32:1995/11/29:outb_p:2:outb:2: +ï¼ :LDP man-pages:3.32:1995/11/29:outl:2:outb:2: +ï¼ :LDP man-pages:3.32:1995/11/29:outl_p:2:outb:2: +ï¼ :LDP man-pages:3.32:1995/11/29:outsb:2:outb:2: +ï¼ :LDP man-pages:3.32:1995/11/29:outsl:2:outb:2: +ï¼ :LDP man-pages:3.32:1995/11/29:outsw:2:outb:2: +ï¼ :LDP man-pages:3.32:1995/11/29:outw:2:outb:2: +ï¼ :LDP man-pages:3.32:1995/11/29:outw_p:2:outb:2: +ï¼ :LDP man-pages:3.32:2009/12/05:path_resolution:2:path_resolution:7: +○:LDP man-pages:3.32:2008/10/06:pause:2:1997/06/27::suto@av.crl.sony.co.jp:SUTO, Mitsuaki: +ï¼ :LDP man-pages:3.32:2003/07/14:pciconfig_iobase:2:pciconfig_read:2: +○:LDP man-pages:3.32:2003/07/14:pciconfig_read:2:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO: +ï¼ :LDP man-pages:3.32:2003/07/14:pciconfig_write:2:pciconfig_read:2: +○:LDP man-pages:3.32:2003/01/01:personality:2:2003/09/14::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.32:2010/09/10:pipe:2:2008/11/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/10:pipe2:2:pipe:2: +○:LDP man-pages:3.32:2007/06/01:pivot_root:2:2000/06/14::nakano@apm.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.32:2010/09/20:poll:2:2006/07/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.24=>3.32:2010/10/09:posix_fadvise:2:2007/02/08::ysato444@yahoo.co.jp:Yuichi SATO: +ï¼ :LDP man-pages:3.32:2010/09/20:ppoll:2:poll:2: +☆:LDP man-pages:3.24=>3.32:2010/05/13:prctl:2:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.31=>3.32:2010/11/21:pread:2:1999/06/25::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +ï¼ :LDP man-pages:3.32:2010/11/21:pread64:2:pread:2: +ï¼ :LDP man-pages:3.32:2010/11/17:preadv:2:readv:2: +ï¼ :LDP man-pages:3.32:2010/12/03:prlimit:2:getrlimit:2: +ï¼ :LDP man-pages:3.32:2007/07/05:prof:2:unimplemented:2: +ï¼ :LDP man-pages:3.32:2010/08/31:pselect:2:select:2: +ï¼ :LDP man-pages:3.32:2010/08/31:pselect6:2:select:2: +○:LDP man-pages:3.32:2009/03/30:ptrace:2:2007/05/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2007/07/05:putpmsg:2:unimplemented:2: +ï¼ :LDP man-pages:3.32:2010/11/21:pwrite:2:pread:2: +ï¼ :LDP man-pages:3.32:2010/11/21:pwrite64:2:pwrite:2: +ï¼ :LDP man-pages:3.32:2010/11/17:pwritev:2:readv:2: +○:LDP man-pages:3.32:0000/00/00:query_module:2:2006/07/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.24=>3.32:2010/06/16:quotactl:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.32:2009/02/23:read:2:2005/10/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2010/09/10:readahead:2:2005/02/27::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2008/10/02:readdir:2:1997/02/23::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +○:LDP man-pages:3.32:2010/09/20:readlink:2:2006/07/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2009/12/13:readlinkat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO: +☆:LDP man-pages:3.31=>3.32:2010/11/17:readv:2:2007/06/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.29=>3.32:2010/10/31:reboot:2:2008/07/24::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.32:2010/08/29:recv:2:2008/12/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/08/29:recvfrom:2:recv:2: +ï¼ :LDP man-pages:3.32:2010/08/29:recvmsg:2:recv:2: +○:LDP man-pages:3.32:2008/04/22:remap_file_pages:2:2005/10/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2001/12/01:removexattr:2:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2009/03/30:rename:2:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2009/12/13:renameat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO: +×:LDP man-pages:3.32:2010/02/25:request_key:2::::: +○:LDP man-pages:3.32:2008/05/08:rmdir:2:2006/07/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/06/16:rt_sigaction:2:sigaction:2: +ï¼ :LDP man-pages:3.32:2008/10/04:rt_sigpending:2:sigpending:2: +ï¼ :LDP man-pages:3.32:2008/10/17:rt_sigprocmask:2:sigprocmask:2: +ï¼ :LDP man-pages:3.32:2007/07/26:rt_sigqueueinfo:2:sigqueue:2: +ï¼ :LDP man-pages:3.32:2008/06/26:rt_sigreturn:2:sigreturn:2: +ï¼ :LDP man-pages:3.32:2005/09/15:rt_sigsuspend:2:sigsuspend:2: +ï¼ :LDP man-pages:3.32:2008/10/04:rt_sigtimedwait:2:sigtimedwait:2: +ï¼ :LDP man-pages:3.32:2010/09/20:sbrk:2:brk:2: +○:LDP man-pages:3.32:2006/03/23:sched_get_priority_max:2:2006/04/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2006/03/23:sched_get_priority_min:2:sched_get_priority_max:2: +ï¼ :LDP man-pages:3.32:2010/11/06:sched_getaffinity:2:sched_setaffinity:2: +ï¼ :LDP man-pages:3.32:2006/03/23:sched_getparam:2:sched_setparam:2: +ï¼ :LDP man-pages:3.32:2010/10/04:sched_getscheduler:2:sched_setscheduler:2: +○:LDP man-pages:3.32:2007/04/06:sched_rr_get_interval:2:2007/06/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2010/11/06:sched_setaffinity:2:2008/12/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2006/03/23:sched_setparam:2:2006/04/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.24=>3.32:2010/10/04:sched_setscheduler:2:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2008/10/18:sched_yield:2:1997/02/23::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +ï¼ :LDP man-pages:3.32:2007/07/05:security:2:unimplemented:2: +○:LDP man-pages:3.32:2010/08/31:select:2:2007/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2010/06/10:select_tut:2:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2009/09/27:semctl:2:2005/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2004/05/27:semget:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2008/10/04:semop:2:2007/05/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2008/10/04:semtimedop:2:semop:2: +○:LDP man-pages:3.32:2010/08/29:send:2:2006/04/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.31=>3.32:2010/12/03:sendfile:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/12/03:sendfile64:2:sendfile:2: +ï¼ :LDP man-pages:3.32:2010/08/29:sendmsg:2:send:2: +ï¼ :LDP man-pages:3.32:2010/08/29:sendto:2:send:2: +○:LDP man-pages:3.32:2008/08/15:set_mempolicy:2:2008/11/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2008/11/27:set_thread_area:2:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2004/09/10:set_tid_address:2:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: +ï¼ :LDP man-pages:3.32:2009/03/15:setcontext:2:getcontext:2: +ï¼ :LDP man-pages:3.32:2009/09/27:setdomainname:2:getdomainname:2: +ï¼ :LDP man-pages:3.32:2009/10/17:setegid:2:seteuid:2: +○:LDP man-pages:3.32:2009/10/17:seteuid:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.31=>3.32:2010/11/22:setfsgid:2:2005/02/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/11/22:setfsgid32:2:setfsgid:2: +☆:LDP man-pages:3.31=>3.32:2010/11/22:setfsuid:2:2005/02/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/11/22:setfsuid32:2:setfsuid:2: +☆:LDP man-pages:3.31=>3.32:2010/11/22:setgid:2:2003/02/14::argrath@ub32.org:Kentaro Shirakata: +ï¼ :LDP man-pages:3.32:2010/11/22:setgid32:2:setgid:2: +ï¼ :LDP man-pages:3.32:2010/11/22:setgroups:2:getgroups:2: +ï¼ :LDP man-pages:3.32:2010/11/22:setgroups32:2:setgroups:2: +ï¼ :LDP man-pages:3.32:2010/09/20:sethostid:2:gethostid:3: +ï¼ :LDP man-pages:3.32:2010/09/26:sethostname:2:gethostname:2: +ï¼ :LDP man-pages:3.32:2009/03/15:setitimer:2:getitimer:2: +○:LDP man-pages:3.32:2010/09/26:setpgid:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/26:setpgrp:2:setpgid:2: +ï¼ :LDP man-pages:3.32:2008/05/29:setpriority:2:getpriority:2: +ï¼ :LDP man-pages:3.32:2010/11/22:setregid:2:setreuid:2: +ï¼ :LDP man-pages:3.32:2010/11/22:setregid32:2:setregid:2: +ï¼ :LDP man-pages:3.32:2010/11/22:setresgid:2:setresuid:2: +ï¼ :LDP man-pages:3.32:2010/11/22:setresgid32:2:setresgid:2: +☆:LDP man-pages:3.31=>3.32:2010/11/22:setresuid:2:2005/11/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/11/22:setresuid32:2:setresuid:2: +☆:LDP man-pages:3.31=>3.32:2010/11/22:setreuid:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/11/22:setreuid32:2:setreuid:2: +ï¼ :LDP man-pages:3.32:2010/12/03:setrlimit:2:getrlimit:2: +○:LDP man-pages:3.32:2008/12/03:setsid:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: +ï¼ :LDP man-pages:3.32:2008/12/03:setsockopt:2:getsockopt:2: +ï¼ :LDP man-pages:3.32:2009/03/25:settimeofday:2:gettimeofday:2: +☆:LDP man-pages:3.31=>3.32:2010/11/22:setuid:2:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: +ï¼ :LDP man-pages:3.32:2010/11/22:setuid32:2:setuid:2: +○:LDP man-pages:3.32:2008/12/03:setup:2:2008/07/24::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.32:2001/12/31:setxattr:2:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2007/07/05:sgetmask:2:2007/10/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2008/06/03:shmat:2:shmop:2: +○:LDP man-pages:3.32:2008/08/07:shmctl:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2008/06/03:shmdt:2:shmop:2: +○:LDP man-pages:3.32:2006/05/02:shmget:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2008/06/03:shmop:2:2006/04/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2008/12/03:shutdown:2:2001/11/09::argrath@ub32.org:Kentaro Shirakata: +☆:LDP man-pages:3.24=>3.32:2010/06/16:sigaction:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2010/09/26:sigaltstack:2:2006/01/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2008/07/11:signal:2:2007/06/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2009/01/13:signalfd:2:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2009/01/13:signalfd4:2:signalfd:2: +○:LDP man-pages:3.32:2008/10/04:sigpending:2:2005/12/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2008/10/17:sigprocmask:2:2005/10/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.31=>3.32:2007/07/26:sigqueue:2:2007/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2008/06/26:sigreturn:2:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2005/09/15:sigsuspend:2:2005/10/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2008/10/04:sigtimedwait:2:sigwaitinfo:2: +○:LDP man-pages:3.32:2008/10/04:sigwaitinfo:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2009/01/19:socket:2:2008/11/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2007/06/28:socketcall:2:1997/03/03::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +○:LDP man-pages:3.32:2008/10/11:socketpair:2:2002/09/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2009/09/15:splice:2:2007/02/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:2.67=>3.32:2007/12/20:spu_create:2:2007/10/23::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2007/11/25:spu_run:2:2007/10/23::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2007/07/05:ssetmask:2:sgetmask:2: +☆:LDP man-pages:3.25=>3.32:2010/12/03:stat:2:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/12/03:stat64:2:stat:2: +☆:LDP man-pages:3.31=>3.32:2010/11/21:statfs:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/11/21:statfs64:2:statfs:2: +ï¼ :LDP man-pages:3.32:2003/08/22:statvfs:2:statvfs:3: +○:LDP man-pages:3.32:2010/02/25:stime:2:2003/09/14::argrath@ub32.org:Kentaro Shirakata: +ï¼ :LDP man-pages:3.32:2007/07/05:stty:2:unimplemented:2: +×:LDP man-pages:3.32:2010/10/30:subpage_prot:2::::: +ï¼ :LDP man-pages:3.32:2010/11/15:swapoff:2:swapon:2: +☆:LDP man-pages:3.31=>3.32:2010/11/15:swapon:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.32:2010/09/20:symlink:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.32:2009/12/13:symlinkat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.32:2010/09/20:sync:2:2003/09/14::argrath@ub32.org:Kentaro Shirakata: +☆:LDP man-pages:3.24=>3.32:2010/10/09:sync_file_range:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/10/09:sync_file_range2:2:sync_file_range:2: +○:LDP man-pages:3.32:2007/07/26:syscall:2:2002/08/20::ysato@h4.dion.ne.jp:Yuichi SATO: +○:LDP man-pages:3.32:2010/11/06:syscalls:2:2007/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2008/11/20:sysctl:2:1999/12/03::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +○:LDP man-pages:3.32:2010/06/27:sysfs:2:2001/06/02::ysato@h4.dion.ne.jp:Yuichi SATO: +○:LDP man-pages:3.32:2007/11/15:sysinfo:2:2000/09/23::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +○:LDP man-pages:3.32:2008/06/20:syslog:2:2008/04/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2009/09/15:tee:2:2007/02/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2008/10/01:tgkill:2:tkill:2: +○:LDP man-pages:3.32:2010/02/25:time:2:1999/07/27::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +×:LDP man-pages:3.32:2010/09/27:timer_create:2::::: +×:LDP man-pages:3.32:2009/02/20:timer_delete:2::::: +×:LDP man-pages:3.32:2009/02/20:timer_getoverrun:2::::: +※:LDP man-pages:3.32:2009/02/20:timer_gettime:2:timer_settime:2: +×:LDP man-pages:3.32:2009/02/20:timer_settime:2::::: +○:LDP man-pages:3.32:2009/03/10:timerfd_create:2:2008/11/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2009/03/10:timerfd_gettime:2:timerfd_create:2: +ï¼ :LDP man-pages:3.32:2009/03/10:timerfd_settime:2:timerfd_create:2: +○:LDP man-pages:3.32:2008/06/25:times:2:2008/02/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2008/10/01:tkill:2:2005/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.31=>3.32:2010/11/21:truncate:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/11/21:truncate64:2:truncate:2: +ï¼ :LDP man-pages:3.32:2007/07/05:tuxcall:2:unimplemented:2: +ï¼ :LDP man-pages:3.32:2010/12/03:ugetrlimit:2:getrlimit:2: +○:LDP man-pages:3.32:2008/01/09:umask:2:2008/02/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.24=>3.32:2010/06/19:umount:2:2008/11/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/06/19:umount2:2:umount:2: +○:LDP man-pages:3.32:2008/12/03:uname:2:2002/02/14::ysato@h4.dion.ne.jp:Yuichi SATO: +○:LDP man-pages:3.32:2007/07/05:unimplemented:2:2003/03/06::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +○:LDP man-pages:3.32:2004/06/23:unlink:2:2006/04/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2009/12/13:unlinkat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO: +☆:LDP man-pages:3.29=>3.32:2010/10/30:unshare:2:2006/08/19::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.32:2005/01/09:uselib:2:2005/04/21::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2003/08/04:ustat:2:2004/06/13::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.32:2008/08/06:utime:2:2006/10/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +×:LDP man-pages:3.32:2009/12/13:utimensat:2::::: +ï¼ :LDP man-pages:3.32:2008/08/06:utimes:2:utime:2: +○:LDP man-pages:3.32:2010/09/20:vfork:2:2008/11/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2007/07/26:vhangup:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.32:2009/02/20:vm86:2:2004/06/13::ysato444@yahoo.co.jp:Yuichi SATO: +ï¼ :LDP man-pages:3.32:2009/02/20:vm86old:2:vm86:2: +○:LDP man-pages:3.32:2009/09/15:vmsplice:2:2007/02/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2007/07/05:vserver:2:unimplemented:2: +○:LDP man-pages:3.32:2010/09/26:wait:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:wait3:2:wait4:2: +○:LDP man-pages:3.32:2010/09/20:wait4:2:2005/03/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/26:waitid:2:wait:2: +ï¼ :LDP man-pages:3.32:2010/09/26:waitpid:2:wait:2: +○:LDP man-pages:3.32:2010/08/29:write:2:2007/05/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/11/17:writev:2:readv:2: +ï¼ :LDP man-pages:3.32:2008/11/20:CMSG_ALIGN:3:cmsg:3: +ï¼ :LDP man-pages:3.32:2008/11/20:CMSG_FIRSTHDR:3:cmsg:3: +ï¼ :LDP man-pages:3.32:2008/11/20:CMSG_NXTHDR:3:cmsg:3: +ï¼ :LDP man-pages:3.32:2008/11/20:CMSG_SPACE:3:cmsg:3: +※:LDP man-pages:3.32:2010/09/10:CPU_ALLOC:3:CPU_SET:3: +※:LDP man-pages:3.32:2010/09/10:CPU_ALLOC_SIZE:3:CPU_SET:3: +※:LDP man-pages:3.32:2010/09/10:CPU_AND:3:CPU_SET:3: +※:LDP man-pages:3.32:2010/09/10:CPU_AND_S:3:CPU_SET:3: +※:LDP man-pages:3.32:2010/09/10:CPU_CLR:3:CPU_SET:3: +※:LDP man-pages:3.32:2010/09/10:CPU_CLR_S:3:CPU_SET:3: +※:LDP man-pages:3.32:2010/09/10:CPU_COUNT:3:CPU_SET:3: +※:LDP man-pages:3.32:2010/09/10:CPU_COUNT_S:3:CPU_SET:3: +※:LDP man-pages:3.32:2010/09/10:CPU_EQUAL:3:CPU_SET:3: +※:LDP man-pages:3.32:2010/09/10:CPU_EQUAL_S:3:CPU_SET:3: +※:LDP man-pages:3.32:2010/09/10:CPU_FREE:3:CPU_SET:3: +※:LDP man-pages:3.32:2010/09/10:CPU_ISSET:3:CPU_SET:3: +※:LDP man-pages:3.32:2010/09/10:CPU_ISSET_S:3:CPU_SET:3: +※:LDP man-pages:3.32:2010/09/10:CPU_OR:3:CPU_SET:3: +※:LDP man-pages:3.32:2010/09/10:CPU_OR_S:3:CPU_SET:3: +×:LDP man-pages:3.32:2010/09/10:CPU_SET:3::::: +※:LDP man-pages:3.32:2010/09/10:CPU_SET_S:3:CPU_SET:3: +※:LDP man-pages:3.32:2010/09/10:CPU_XOR:3:CPU_SET:3: +※:LDP man-pages:3.32:2010/09/10:CPU_XOR_S:3:CPU_SET:3: +※:LDP man-pages:3.32:2010/09/10:CPU_ZERO:3:CPU_SET:3: +※:LDP man-pages:3.32:2010/09/10:CPU_ZERO_S:3:CPU_SET:3: +ï¼ :LDP man-pages:3.32:2010/08/31:FD_CLR:3:select:2: +ï¼ :LDP man-pages:3.32:2010/08/31:FD_ISSET:3:select:2: +ï¼ :LDP man-pages:3.32:2010/08/31:FD_SET:3:select:2: +ï¼ :LDP man-pages:3.32:2010/08/31:FD_ZERO:3:select:2: +ï¼ :LDP man-pages:3.32:2007/07/26:HUGE_VAL:3:INFINITY:3: +ï¼ :LDP man-pages:3.32:2007/07/26:HUGE_VALF:3:INFINITY:3: +ï¼ :LDP man-pages:3.32:2007/07/26:HUGE_VALL:3:INFINITY:3: +○:LDP man-pages:3.32:2007/07/26:INFINITY:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.32:1999/07/04:MB_CUR_MAX:3:1999/09/11::cz8cb01@linux.or.jp:HAYAKAWA Hitoshi: +○:LDP man-pages:3.32:1999/07/04:MB_LEN_MAX:3:1999/09/11::cz8cb01@linux.or.jp:HAYAKAWA Hitoshi: +ï¼ :LDP man-pages:3.32:2007/07/26:NAN:3:INFINITY:3: +ï¼ :LDP man-pages:3.32:2001/12/16:__fbufsize:3:stdio_ext:3: +ï¼ :LDP man-pages:3.32:2001/12/16:__flbf:3:stdio_ext:3: +ï¼ :LDP man-pages:3.32:2001/12/16:__fpending:3:stdio_ext:3: +ï¼ :LDP man-pages:3.32:2001/12/15:__fpurge:3:fpurge:3: +ï¼ :LDP man-pages:3.32:2001/12/16:__freadable:3:stdio_ext:3: +ï¼ :LDP man-pages:3.32:2001/12/16:__freading:3:stdio_ext:3: +ï¼ :LDP man-pages:3.32:2001/12/16:__fsetlocking:3:stdio_ext:3: +ï¼ :LDP man-pages:3.32:2001/12/16:__fwritable:3:stdio_ext:3: +ï¼ :LDP man-pages:3.32:2001/12/16:__fwriting:3:stdio_ext:3: +ï¼ :LDP man-pages:3.32:2010/10/13:__malloc_hook:3:malloc_hook:3: +○:LDP man-pages:3.32:1997/03/08:__setfpucw:3:2000/09/20::nakano@apm.seikei.ac.jp:NAKANO Takeo: +ï¼ :LDP man-pages:3.32:2001/12/16:_flushlbf:3:stdio_ext:3: +○:LDP man-pages:3.32:2010/09/20:a64l:3:2004/01/17::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.32:2007/12/15:abort:3:1998/02/18::tyoshino@eng.toyo.ac.jp:Takashi Yoshino: +○:LDP man-pages:3.32:2010/09/20:abs:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.32:2010/09/20:acos:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:acosf:3:acos:3: +○:LDP man-pages:3.32:2010/09/20:acosh:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:acoshf:3:acosh:3: +ï¼ :LDP man-pages:3.32:2010/09/20:acoshl:3:acosh:3: +ï¼ :LDP man-pages:3.32:2010/09/20:acosl:3:acos:3: +ï¼ :LDP man-pages:3.32:2009/09/15:addmntent:3:getmntent:3: +○:LDP man-pages:3.32:2008/06/14:addseverity:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.32:2008/06/22:adjtime:3:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.25=>3.32:2010/10/03:aio_cancel:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO: +☆:LDP man-pages:3.25=>3.32:2010/10/03:aio_error:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO: +☆:LDP man-pages:3.25=>3.32:2010/10/02:aio_fsync:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO: +×:LDP man-pages:3.32:2010/10/06:aio_init:3::::: +☆:LDP man-pages:3.25=>3.32:2010/10/03:aio_read:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO: +☆:LDP man-pages:3.25=>3.32:2010/10/03:aio_return:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO: +☆:LDP man-pages:3.25=>3.32:2010/10/02:aio_suspend:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO: +☆:LDP man-pages:3.25=>3.32:2010/10/02:aio_write:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.32:2008/01/24:alloca:3:2002/09/19::ysato444@yahoo.co.jp:Yuichi SATO: +ï¼ :LDP man-pages:3.32:2009/02/10:alphasort:3:scandir:3: +ï¼ :LDP man-pages:3.32:2007/05/18:argz:3:argz_add:3: +○:LDP man-pages:3.32:2007/05/18:argz_add:3:2003/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2007/05/18:argz_add_sep:3:argz_add:3: +ï¼ :LDP man-pages:3.32:2007/05/18:argz_append:3:argz_add:3: +ï¼ :LDP man-pages:3.32:2007/05/18:argz_count:3:argz_add:3: +ï¼ :LDP man-pages:3.32:2007/05/18:argz_create:3:argz_add:3: +ï¼ :LDP man-pages:3.32:2007/05/18:argz_create_sep:3:argz_add:3: +ï¼ :LDP man-pages:3.32:2007/05/18:argz_delete:3:argz_add:3: +ï¼ :LDP man-pages:3.32:2007/05/18:argz_extract:3:argz_add:3: +ï¼ :LDP man-pages:3.32:2007/05/18:argz_insert:3:argz_add:3: +ï¼ :LDP man-pages:3.32:2007/05/18:argz_next:3:argz_add:3: +ï¼ :LDP man-pages:3.32:2007/05/18:argz_replace:3:argz_add:3: +ï¼ :LDP man-pages:3.32:2007/05/18:argz_stringify:3:argz_add:3: +ï¼ :LDP man-pages:3.32:2010/02/25:asctime:3:ctime:3: +ï¼ :LDP man-pages:3.32:2010/02/25:asctime_r:3:ctime:3: +○:LDP man-pages:3.32:2010/09/20:asin:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:asinf:3:asin:3: +○:LDP man-pages:3.32:2010/09/20:asinh:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:asinhf:3:asinh:3: +ï¼ :LDP man-pages:3.32:2010/09/20:asinhl:3:asinh:3: +ï¼ :LDP man-pages:3.32:2010/09/20:asinl:3:asin:3: +○:LDP man-pages:3.32:2001/12/18:asprintf:3:2002/01/14::nakano@apm.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.32:2002/08/25:assert:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.32:2002/08/25:assert_perror:3:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2010/09/20:atan:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2010/09/20:atan2:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:atan2f:3:atan2:3: +ï¼ :LDP man-pages:3.32:2010/09/20:atan2l:3:atan2:3: +ï¼ :LDP man-pages:3.32:2010/09/20:atanf:3:atan:3: +○:LDP man-pages:3.32:2010/09/11:atanh:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/11:atanhf:3:atanh:3: +ï¼ :LDP man-pages:3.32:2010/09/11:atanhl:3:atanh:3: +ï¼ :LDP man-pages:3.32:2010/09/20:atanl:3:atan:3: +○:LDP man-pages:3.32:2008/12/05:atexit:3:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:1993/03/29:atof:3:1998/02/18::tyoshino@eng.toyo.ac.jp:Takashi Yoshino: +○:LDP man-pages:3.32:2010/09/20:atoi:3:2001/02/09::argrath@ub32.org:Kentaro Shirakata: +ï¼ :LDP man-pages:3.32:2010/09/20:atol:3:atoi:3: +ï¼ :LDP man-pages:3.32:2010/09/20:atoll:3:atoi:3: +ï¼ :LDP man-pages:3.32:2010/09/20:atoq:3:atoi:3: +ï¼ :LDP man-pages:3.32:2008/07/17:auth_destroy:3:rpc:3: +ï¼ :LDP man-pages:3.32:2008/07/17:authnone_create:3:rpc:3: +ï¼ :LDP man-pages:3.32:2008/07/17:authunix_create:3:rpc:3: +ï¼ :LDP man-pages:3.32:2008/07/17:authunix_create_default:3:rpc:3: +○:LDP man-pages:3.32:2008/06/14:backtrace:3:2007/10/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2008/06/14:backtrace_symbols:3:backtrace:3: +ï¼ :LDP man-pages:3.32:2008/06/14:backtrace_symbols_fd:3:backtrace:3: +○:LDP man-pages:3.32:2009/03/30:basename:3:2007/05/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2008/08/06:bcmp:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.32:2009/03/15:bcopy:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: +※:LDP man-pages:3.32:2010/09/10:be16toh:3:endian:3: +※:LDP man-pages:3.32:2010/09/10:be32toh:3:endian:3: +※:LDP man-pages:3.32:2010/09/10:be64toh:3:endian:3: +○:LDP man-pages:3.32:2008/12/03:bindresvport:3:2007/06/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2009/03/15:bsd_signal:3:2007/06/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2003/11/01:bsearch:3:2005/02/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2004/12/26:bstring:3:2003/11/13::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.32:2009/02/04:btowc:3:1999/09/11::cz8cb01@linux.or.jp:HAYAKAWA Hitoshi: +○:LDP man-pages:3.32:1994/08/18:btree:3:1999/08/16::nakano@apm.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.32:2009/01/15:byteorder:3:2005/11/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2002/12/31:bzero:3:2003/03/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2007/12/26:cabs:3:2003/07/23::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2007/12/26:cabsf:3:cabs:3: +ï¼ :LDP man-pages:3.32:2007/12/26:cabsl:3:cabs:3: +○:LDP man-pages:3.32:2007/12/26:cacos:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2007/12/26:cacosf:3:cacos:3: +○:LDP man-pages:3.32:2008/08/11:cacosh:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2008/08/11:cacoshf:3:cacosh:3: +ï¼ :LDP man-pages:3.32:2008/08/11:cacoshl:3:cacosh:3: +ï¼ :LDP man-pages:3.32:2007/12/26:cacosl:3:cacos:3: +ï¼ :LDP man-pages:3.32:2010/10/18:calloc:3:malloc:3: +ï¼ :LDP man-pages:3.32:2008/07/17:callrpc:3:rpc:3: +○:LDP man-pages:3.32:2005/07/14:canonicalize_file_name:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2007/12/26:carg:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2007/12/26:cargf:3:carg:3: +ï¼ :LDP man-pages:3.32:2007/12/26:cargl:3:carg:3: +○:LDP man-pages:3.32:2007/12/26:casin:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2007/12/26:casinf:3:casin:3: +○:LDP man-pages:3.32:2007/12/26:casinh:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2007/12/26:casinhf:3:casinh:3: +ï¼ :LDP man-pages:3.32:2007/12/26:casinhl:3:casinh:3: +ï¼ :LDP man-pages:3.32:2007/12/26:casinl:3:casin:3: +○:LDP man-pages:3.32:2007/12/26:catan:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2007/12/26:catanf:3:catan:3: +○:LDP man-pages:3.32:2007/12/26:catanh:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2007/12/26:catanhf:3:catanh:3: +ï¼ :LDP man-pages:3.32:2007/12/26:catanhl:3:catanh:3: +ï¼ :LDP man-pages:3.32:2007/12/26:catanl:3:catan:3: +ï¼ :LDP man-pages:3.32:2001/12/14:catclose:3:catopen:3: +○:LDP man-pages:3.32:1998/08/09:catgets:3:1999/03/01::nakano@apm.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.32:2001/12/14:catopen:3:2002/01/14::ysato@h4.dion.ne.jp:Yuichi SATO: +ï¼ :LDP man-pages:3.32:2007/05/18:cbc_crypt:3:des_crypt:3: +○:LDP man-pages:3.32:2010/09/20:cbrt:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:cbrtf:3:cbrt:3: +ï¼ :LDP man-pages:3.32:2010/09/20:cbrtl:3:cbrt:3: +○:LDP man-pages:3.32:2007/12/26:ccos:3:2003/07/28::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2007/12/26:ccosf:3:ccos:3: +○:LDP man-pages:3.32:2007/12/26:ccosh:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2007/12/26:ccoshf:3:ccosh:3: +ï¼ :LDP man-pages:3.32:2007/12/26:ccoshl:3:ccosh:3: +ï¼ :LDP man-pages:3.32:2007/12/26:ccosl:3:ccos:3: +○:LDP man-pages:3.32:2010/09/20:ceil:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:ceilf:3:ceil:3: +ï¼ :LDP man-pages:3.32:2010/09/20:ceill:3:ceil:3: +○:LDP man-pages:3.32:2010/09/12:cerf:3:2005/02/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/12:cerfc:3:cerf:3: +ï¼ :LDP man-pages:3.32:2010/09/12:cerfcf:3:cerf:3: +ï¼ :LDP man-pages:3.32:2010/09/12:cerfcl:3:cerf:3: +ï¼ :LDP man-pages:3.32:2010/09/12:cerff:3:cerf:3: +ï¼ :LDP man-pages:3.32:2010/09/12:cerfl:3:cerf:3: +○:LDP man-pages:3.32:2007/12/26:cexp:3:2003/08/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2002/07/28:cexp2:3:2005/03/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2002/07/28:cexp2f:3:cexp2:3: +ï¼ :LDP man-pages:3.32:2002/07/28:cexp2l:3:cexp2:3: +ï¼ :LDP man-pages:3.32:2007/12/26:cexpf:3:cexp:3: +ï¼ :LDP man-pages:3.32:2007/12/26:cexpl:3:cexp:3: +ï¼ :LDP man-pages:3.32:2010/06/20:cfgetispeed:3:termios:3: +ï¼ :LDP man-pages:3.32:2010/06/20:cfgetospeed:3:termios:3: +ï¼ :LDP man-pages:3.32:2010/06/20:cfmakeraw:3:termios:3: +○:LDP man-pages:3.32:2007/07/26:cfree:3:2004/08/14::ysato444@yahoo.co.jp:Yuichi SATO: +ï¼ :LDP man-pages:3.32:2010/06/20:cfsetispeed:3:termios:3: +ï¼ :LDP man-pages:3.32:2010/06/20:cfsetospeed:3:termios:3: +ï¼ :LDP man-pages:3.32:2010/06/20:cfsetspeed:3:termios:3: +○:LDP man-pages:3.32:2007/12/23:cimag:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2007/12/23:cimagf:3:cimag:3: +ï¼ :LDP man-pages:3.32:2007/12/23:cimagl:3:cimag:3: +○:LDP man-pages:3.32:2010/10/04:clearenv:3:2002/08/20::ysato@h4.dion.ne.jp:Yuichi SATO: +ï¼ :LDP man-pages:3.32:2008/08/29:clearerr:3:ferror:3: +ï¼ :LDP man-pages:3.32:2008/08/29:clearerr_unlocked:3:unlocked_stdio:3: +ï¼ :LDP man-pages:3.32:2008/07/17:clnt_broadcast:3:rpc:3: +ï¼ :LDP man-pages:3.32:2008/07/17:clnt_call:3:rpc:3: +ï¼ :LDP man-pages:3.32:2008/07/17:clnt_control:3:rpc:3: +ï¼ :LDP man-pages:3.32:2008/07/17:clnt_create:3:rpc:3: +ï¼ :LDP man-pages:3.32:2008/07/17:clnt_destroy:3:rpc:3: +ï¼ :LDP man-pages:3.32:2008/07/17:clnt_freeres:3:rpc:3: +ï¼ :LDP man-pages:3.32:2008/07/17:clnt_geterr:3:rpc:3: +ï¼ :LDP man-pages:3.32:2008/07/17:clnt_pcreateerror:3:rpc:3: +ï¼ :LDP man-pages:3.32:2008/07/17:clnt_perrno:3:rpc:3: +ï¼ :LDP man-pages:3.32:2008/07/17:clnt_perror:3:rpc:3: +ï¼ :LDP man-pages:3.32:2008/07/17:clnt_spcreateerror:3:rpc:3: +ï¼ :LDP man-pages:3.32:2008/07/17:clnt_sperrno:3:rpc:3: +ï¼ :LDP man-pages:3.32:2008/07/17:clnt_sperror:3:rpc:3: +ï¼ :LDP man-pages:3.32:2008/07/17:clntraw_create:3:rpc:3: +ï¼ :LDP man-pages:3.32:2008/07/17:clnttcp_create:3:rpc:3: +ï¼ :LDP man-pages:3.32:2008/07/17:clntudp_bufcreate:3:rpc:3: +ï¼ :LDP man-pages:3.32:2008/07/17:clntudp_create:3:rpc:3: +○:LDP man-pages:3.32:2008/08/28:clock:3:2007/06/01::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +×:LDP man-pages:3.32:2010/09/10:clock_getcpuclockid:3::::: +ï¼ :LDP man-pages:3.32:2010/02/03:clock_getres:3:clock_getres:2: +ï¼ :LDP man-pages:3.32:2010/02/03:clock_gettime:3:clock_getres:2: +ï¼ :LDP man-pages:3.32:2010/02/03:clock_settime:3:clock_getres:2: +○:LDP man-pages:3.32:2007/12/26:clog:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2008/08/11:clog10:3:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2008/08/11:clog10f:3:clog10:3: +ï¼ :LDP man-pages:3.32:2008/08/11:clog10l:3:clog10:3: +○:LDP man-pages:3.32:2002/07/28:clog2:3:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2002/07/28:clog2f:3:clog2:3: +ï¼ :LDP man-pages:3.32:2002/07/28:clog2l:3:clog2:3: +ï¼ :LDP man-pages:3.32:2007/12/26:clogf:3:clog:3: +ï¼ :LDP man-pages:3.32:2007/12/26:clogl:3:clog:3: +○:LDP man-pages:3.32:2008/09/23:closedir:3:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: +ï¼ :LDP man-pages:3.32:2008/11/12:closelog:3:syslog:3: +○:LDP man-pages:3.32:2008/11/20:cmsg:3:1999/08/17::nakano@apm.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.32:2010/02/03:confstr:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2007/12/26:conj:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2007/12/26:conjf:3:conj:3: +ï¼ :LDP man-pages:3.32:2007/12/26:conjl:3:conj:3: +○:LDP man-pages:3.32:2010/09/20:copysign:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:copysignf:3:copysign:3: +ï¼ :LDP man-pages:3.32:2010/09/20:copysignl:3:copysign:3: +○:LDP man-pages:3.32:2010/09/11:cos:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/11:cosf:3:cos:3: +○:LDP man-pages:3.32:2010/09/20:cosh:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:coshf:3:cosh:3: +ï¼ :LDP man-pages:3.32:2010/09/20:coshl:3:cosh:3: +ï¼ :LDP man-pages:3.32:2010/09/11:cosl:3:cos:3: +○:LDP man-pages:3.32:2002/07/28:cpow:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2002/07/28:cpowf:3:cpow:3: +ï¼ :LDP man-pages:3.32:2002/07/28:cpowl:3:cpow:3: +○:LDP man-pages:3.32:2010/06/10:cproj:3:2005/03/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/06/10:cprojf:3:cproj:3: +ï¼ :LDP man-pages:3.32:2010/06/10:cprojl:3:cproj:3: +○:LDP man-pages:3.32:2007/12/26:creal:3:2003/07/28::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2007/12/26:crealf:3:creal:3: +ï¼ :LDP man-pages:3.32:2007/12/26:creall:3:creal:3: +○:LDP man-pages:3.32:2010/06/20:crypt:3:2008/10/08::argrath@ub32.org:Kentaro Shirakata: +ï¼ :LDP man-pages:3.32:2010/06/20:crypt_r:3:crypt:3: +○:LDP man-pages:3.32:2007/12/26:csin:3:2003/07/28::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2007/12/26:csinf:3:csin:3: +○:LDP man-pages:3.32:2007/12/26:csinh:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2007/12/26:csinhf:3:csinh:3: +ï¼ :LDP man-pages:3.32:2007/12/26:csinhl:3:csinh:3: +ï¼ :LDP man-pages:3.32:2007/12/26:csinl:3:csin:3: +○:LDP man-pages:3.32:2008/08/11:csqrt:3:2003/08/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2008/08/11:csqrtf:3:csqrt:3: +ï¼ :LDP man-pages:3.32:2008/08/11:csqrtl:3:csqrt:3: +○:LDP man-pages:3.32:2007/12/26:ctan:3:2005/02/21::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2007/12/26:ctanf:3:ctan:3: +○:LDP man-pages:3.32:2007/12/26:ctanh:3:2005/02/21::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2007/12/26:ctanhf:3:ctanh:3: +ï¼ :LDP man-pages:3.32:2007/12/26:ctanhl:3:ctanh:3: +ï¼ :LDP man-pages:3.32:2007/12/26:ctanl:3:ctan:3: +○:LDP man-pages:3.32:2007/07/26:ctermid:3:1997/2/10::nagoya@cc.hit-u.ac.jp:NAGOYA Hiroaki: +○:LDP man-pages:3.32:2010/02/25:ctime:3:2008/11/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/02/25:ctime_r:3:ctime:3: +ï¼ :LDP man-pages:3.32:2008/06/29:cuserid:3:getlogin:3: +○:LDP man-pages:3.32:2009/12/05:daemon:3:2002/01/14::ysato@h4.dion.ne.jp:Yuichi SATO: +ï¼ :LDP man-pages:3.32:2010/02/25:daylight:3:tzset:3: +ï¼ :LDP man-pages:3.32:1994/01/02:db:3:dbopen:3: +○:LDP man-pages:3.32:1994/01/02:dbopen:3:1999/08/19::nakano@apm.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.32:2007/05/18:des_crypt:3:2004/08/14::ysato444@yahoo.co.jp:Yuichi SATO: +ï¼ :LDP man-pages:3.32:2007/05/18:des_setparity:3:des_crypt:3: +○:LDP man-pages:3.32:2010/02/25:difftime:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2010/09/26:dirfd:3:2003/10/15::ysato444@yahoo.co.jp:Yuichi SATO: +ï¼ :LDP man-pages:3.32:2009/03/30:dirname:3:basename:3: +○:LDP man-pages:3.32:2010/09/20:div:3:2004/06/13::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.32:2007/05/18:dl_iterate_phdr:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: +ï¼ :LDP man-pages:3.32:2008/12/06:dladdr:3:dlopen:3: +ï¼ :LDP man-pages:3.32:2008/12/06:dlclose:3:dlopen:3: +ï¼ :LDP man-pages:3.32:2008/12/06:dlerror:3:dlopen:3: +○:LDP man-pages:3.32:2008/12/06:dlopen:3:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2008/12/06:dlsym:3:dlopen:3: +ï¼ :LDP man-pages:3.32:2008/12/06:dlvsym:3:dlopen:3: +ï¼ :LDP man-pages:3.32:2010/06/17:dn_comp:3:resolver:3: +ï¼ :LDP man-pages:3.32:2010/06/17:dn_expand:3:resolver:3: +○:LDP man-pages:3.32:2010/09/15:dprintf:3:2002/01/14::nakano@apm.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.32:2007/07/26:drand48:3:1997/01/20::tyoshino@eng.toyo.ac.jp:YOSHINO Takashi: +○:LDP man-pages:3.32:2007/07/26:drand48_r:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: +ï¼ :LDP man-pages:3.32:2010/09/20:drem:3:remainder:3: +ï¼ :LDP man-pages:3.32:2010/09/20:dremf:3:remainder:3: +ï¼ :LDP man-pages:3.32:2010/09/20:dreml:3:remainder:3: +○:LDP man-pages:3.32:2010/09/22:dysize:3:2002/01/06::nakano@apm.seikei.ac.jp:NAKANO Takeo: +ï¼ :LDP man-pages:3.32:2010/11/01:eaccess:3:euidaccess:3: +ï¼ :LDP man-pages:3.32:2007/05/18:ecb_crypt:3:des_crypt:3: +○:LDP man-pages:3.32:2010/09/20:ecvt:3:2009/05/14::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.32:2007/07/26:ecvt_r:3:2002/09/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2008/07/17:edata:3:end:3: +○:LDP man-pages:3.32:2003/04/04:encrypt:3:2004/02/06::ysato444@yahoo.co.jp:Yuichi SATO: +ï¼ :LDP man-pages:3.32:2003/04/04:encrypt_r:3:encrypt:3: +○:LDP man-pages:3.32:2008/07/17:end:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2003/09/09:endaliasent:3:setaliasent:3: +ï¼ :LDP man-pages:3.32:2002/02/28:endfsent:3:getfsent:3: +ï¼ :LDP man-pages:3.32:2010/10/21:endgrent:3:getgrent:3: +ï¼ :LDP man-pages:3.32:2010/10/04:endhostent:3:gethostbyname:3: +×:LDP man-pages:3.32:2010/09/10:endian:3::::: +ï¼ :LDP man-pages:3.32:2009/09/15:endmntent:3:getmntent:3: +ï¼ :LDP man-pages:3.32:2008/08/19:endnetent:3:getnetent:3: +ï¼ :LDP man-pages:3.32:2007/07/26:endnetgrent:3:setnetgrent:3: +ï¼ :LDP man-pages:3.32:2008/08/19:endprotoent:3:getprotoent:3: +ï¼ :LDP man-pages:3.32:2010/10/21:endpwent:3:getpwent:3: +ï¼ :LDP man-pages:3.32:2008/08/19:endrpcent:3:getrpcent:3: +ï¼ :LDP man-pages:3.32:2008/08/19:endservent:3:getservent:3: +ï¼ :LDP man-pages:3.32:2010/02/25:endspent:3:getspnam:3: +ï¼ :LDP man-pages:3.32:2002/07/18:endttyent:3:getttyent:3: +ï¼ :LDP man-pages:3.32:2007/07/26:endusershell:3:getusershell:3: +ï¼ :LDP man-pages:3.32:2008/06/29:endutent:3:getutent:3: +ï¼ :LDP man-pages:3.32:2008/06/29:endutxent:3:getutent:3: +ï¼ :LDP man-pages:3.32:2007/05/18:envz:3:envz_add:3: +○:LDP man-pages:3.32:2007/05/18:envz_add:3:2003/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2007/05/18:envz_entry:3:envz_add:3: +ï¼ :LDP man-pages:3.32:2007/05/18:envz_get:3:envz_add:3: +ï¼ :LDP man-pages:3.32:2007/05/18:envz_merge:3:envz_add:3: +ï¼ :LDP man-pages:3.32:2007/05/18:envz_remove:3:envz_add:3: +ï¼ :LDP man-pages:3.32:2007/05/18:envz_strip:3:envz_add:3: +ï¼ :LDP man-pages:3.32:2007/07/26:erand48:3:drand48:3: +ï¼ :LDP man-pages:3.32:2007/07/26:erand48_r:3:drand48_r:3: +○:LDP man-pages:3.32:2010/09/20:erf:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2010/09/20:erfc:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:erfcf:3:erfc:3: +ï¼ :LDP man-pages:3.32:2010/09/20:erfcl:3:erfc:3: +ï¼ :LDP man-pages:3.32:2010/09/20:erff:3:erf:3: +ï¼ :LDP man-pages:3.32:2010/09/20:erfl:3:erf:3: +○:LDP man-pages:3.32:2007/12/28:err:3:2003/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2008/07/09:errno:3:2006/07/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2010/08/29:error:3:2006/08/19::ysato444@yahoo.co.jp:Yuichi SATO: +ï¼ :LDP man-pages:3.32:2010/08/29:error_at_line:3:error:3: +ï¼ :LDP man-pages:3.32:2010/08/29:error_message_count:3:error:3: +ï¼ :LDP man-pages:3.32:2010/08/29:error_one_per_line:3:error:3: +ï¼ :LDP man-pages:3.32:2010/08/29:error_print_progname:3:error:3: +ï¼ :LDP man-pages:3.32:2007/12/28:errx:3:err:3: +ï¼ :LDP man-pages:3.32:2008/07/17:etext:3:end:3: +○:LDP man-pages:3.32:2002/07/20:ether_aton:3:2002/09/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2002/07/20:ether_aton_r:3:ether_aton:3: +ï¼ :LDP man-pages:3.32:2002/07/20:ether_hostton:3:ether_aton:3: +ï¼ :LDP man-pages:3.32:2002/07/20:ether_line:3:ether_aton:3: +ï¼ :LDP man-pages:3.32:2002/07/20:ether_ntoa:3:ether_aton:3: +ï¼ :LDP man-pages:3.32:2002/07/20:ether_ntoa_r:3:ether_aton:3: +ï¼ :LDP man-pages:3.32:2002/07/20:ether_ntohost:3:ether_aton:3: +☆:LDP man-pages:3.29=>3.32:2010/11/01:euidaccess:3:2007/06/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/08/30:eventfd_read:3:eventfd:2: +ï¼ :LDP man-pages:3.32:2010/08/30:eventfd_write:3:eventfd:2: +○:LDP man-pages:3.32:2010/09/25:exec:3:2005/03/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/25:execl:3:exec:3: +ï¼ :LDP man-pages:3.32:2010/09/25:execle:3:exec:3: +ï¼ :LDP man-pages:3.32:2010/09/25:execlp:3:exec:3: +ï¼ :LDP man-pages:3.32:2010/09/25:execv:3:exec:3: +ï¼ :LDP man-pages:3.32:2010/09/25:execvp:3:exec:3: +ï¼ :LDP man-pages:3.32:2010/09/25:execvpe:3:exec:3: +○:LDP man-pages:3.32:2009/09/20:exit:3:2007/06/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2010/09/20:exp:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2008/08/11:exp10:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2008/08/11:exp10f:3:exp10:3: +ï¼ :LDP man-pages:3.32:2008/08/11:exp10l:3:exp10:3: +○:LDP man-pages:3.32:2010/09/20:exp2:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:exp2f:3:exp2:3: +ï¼ :LDP man-pages:3.32:2010/09/20:exp2l:3:exp2:3: +ï¼ :LDP man-pages:3.32:2010/09/20:expf:3:exp:3: +ï¼ :LDP man-pages:3.32:2010/09/20:expl:3:exp:3: +○:LDP man-pages:3.32:2010/09/12:expm1:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/12:expm1f:3:expm1:3: +ï¼ :LDP man-pages:3.32:2010/09/12:expm1l:3:expm1:3: +○:LDP man-pages:3.32:2010/09/20:fabs:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:fabsf:3:fabs:3: +ï¼ :LDP man-pages:3.32:2010/09/20:fabsl:3:fabs:3: +○:LDP man-pages:3.32:2009/02/23:fclose:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.32:2006/12/27:fcloseall:3:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:fcvt:3:ecvt:3: +ï¼ :LDP man-pages:3.32:2007/07/26:fcvt_r:3:ecvt_r:3: +○:LDP man-pages:3.32:2010/09/20:fdim:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:fdimf:3:fdim:3: +ï¼ :LDP man-pages:3.32:2010/09/20:fdiml:3:fdim:3: +ï¼ :LDP man-pages:3.32:2009/02/23:fdopen:3:fopen:3: +ï¼ :LDP man-pages:3.32:2010/06/20:fdopendir:3:opendir:3: +ï¼ :LDP man-pages:3.32:2010/10/31:feclearexcept:3:fenv:3: +ï¼ :LDP man-pages:3.32:2010/10/31:fedisableexcept:3:fenv:3: +ï¼ :LDP man-pages:3.32:2010/10/31:feenableexcept:3:fenv:3: +ï¼ :LDP man-pages:3.32:2010/10/31:fegetenv:3:fenv:3: +ï¼ :LDP man-pages:3.32:2010/10/31:fegetexcept:3:fenv:3: +ï¼ :LDP man-pages:3.32:2010/10/31:fegetexceptflag:3:fenv:3: +ï¼ :LDP man-pages:3.32:2010/10/31:fegetround:3:fenv:3: +ï¼ :LDP man-pages:3.32:2010/10/31:feholdexcept:3:fenv:3: +○:LDP man-pages:3.32:2010/10/31:fenv:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2008/08/29:feof:3:ferror:3: +ï¼ :LDP man-pages:3.32:2008/08/29:feof_unlocked:3:unlocked_stdio:3: +ï¼ :LDP man-pages:3.32:2010/10/31:feraiseexcept:3:fenv:3: +○:LDP man-pages:3.32:2008/08/29:ferror:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: +ï¼ :LDP man-pages:3.32:2008/08/29:ferror_unlocked:3:unlocked_stdio:3: +ï¼ :LDP man-pages:3.32:2010/10/31:fesetenv:3:fenv:3: +ï¼ :LDP man-pages:3.32:2010/10/31:fesetexceptflag:3:fenv:3: +ï¼ :LDP man-pages:3.32:2010/10/31:fesetround:3:fenv:3: +ï¼ :LDP man-pages:3.32:2010/10/31:fetestexcept:3:fenv:3: +ï¼ :LDP man-pages:3.32:2010/10/31:feupdateenv:3:fenv:3: +○:LDP man-pages:3.32:2010/09/15:fexecve:3:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2009/09/06:fflush:3:2001/11/09::argrath@ub32.org:Kentaro Shirakata: +ï¼ :LDP man-pages:3.32:2008/08/29:fflush_unlocked:3:unlocked_stdio:3: +○:LDP man-pages:3.32:2010/09/20:ffs:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: +ï¼ :LDP man-pages:3.32:2010/09/20:ffsl:3:ffs:3: +ï¼ :LDP man-pages:3.32:2010/09/20:ffsll:3:ffs:3: +ï¼ :LDP man-pages:3.32:2008/08/06:fgetc:3:gets:3: +ï¼ :LDP man-pages:3.32:2008/08/29:fgetc_unlocked:3:unlocked_stdio:3: +○:LDP man-pages:3.32:2008/07/10:fgetgrent:3:1997/12/19::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: +ï¼ :LDP man-pages:3.32:2010/10/21:fgetgrent_r:3:getgrent_r:3: +ï¼ :LDP man-pages:3.32:1993/11/29:fgetpos:3:fseek:3: +○:LDP man-pages:3.32:2008/07/10:fgetpwent:3:1997/12/18::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: +ï¼ :LDP man-pages:3.32:2010/10/21:fgetpwent_r:3:getpwent_r:3: +ï¼ :LDP man-pages:3.32:2008/08/06:fgets:3:gets:3: +ï¼ :LDP man-pages:3.32:2008/08/29:fgets_unlocked:3:unlocked_stdio:3: +ï¼ :LDP man-pages:3.32:2010/02/25:fgetspent:3:getspnam:3: +ï¼ :LDP man-pages:3.32:2010/02/25:fgetspent_r:3:getspnam:3: +○:LDP man-pages:3.32:1999/07/25:fgetwc:3:2001/11/09::argrath@ub32.org:Kentaro Shirakata: +ï¼ :LDP man-pages:3.32:2008/08/29:fgetwc_unlocked:3:unlocked_stdio:3: +○:LDP man-pages:3.32:1999/07/25:fgetws:3:2001/11/09::ysato@h4.dion.ne.jp:Yuichi SATO: +ï¼ :LDP man-pages:3.32:2008/08/29:fgetws_unlocked:3:unlocked_stdio:3: +ï¼ :LDP man-pages:3.32:2008/08/29:fileno:3:ferror:3: +ï¼ :LDP man-pages:3.32:2008/08/29:fileno_unlocked:3:unlocked_stdio:3: +○:LDP man-pages:3.32:2008/08/05:finite:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2008/08/05:finitef:3:finite:3: +ï¼ :LDP man-pages:3.32:2008/08/05:finitel:3:finite:3: +○:LDP man-pages:3.32:2008/08/29:flockfile:3:2001/11/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2010/09/20:floor:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:floorf:3:floor:3: +ï¼ :LDP man-pages:3.32:2010/09/20:floorl:3:floor:3: +○:LDP man-pages:3.32:2010/09/20:fma:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:fmaf:3:fma:3: +ï¼ :LDP man-pages:3.32:2010/09/20:fmal:3:fma:3: +○:LDP man-pages:3.32:2010/09/20:fmax:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:fmaxf:3:fmax:3: +ï¼ :LDP man-pages:3.32:2010/09/20:fmaxl:3:fmax:3: +○:LDP man-pages:3.32:2010/09/15:fmemopen:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2010/09/20:fmin:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:fminf:3:fmin:3: +ï¼ :LDP man-pages:3.32:2010/09/20:fminl:3:fmin:3: +○:LDP man-pages:3.32:2010/09/20:fmod:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:fmodf:3:fmod:3: +ï¼ :LDP man-pages:3.32:2010/09/20:fmodl:3:fmod:3: +○:LDP man-pages:3.32:2008/06/14:fmtmsg:3:2004/08/14::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.32:2000/10/15:fnmatch:3:2006/03/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2009/02/23:fopen:3:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +×:LDP man-pages:3.32:2008/12/05:fopencookie:3::::: +ï¼ :LDP man-pages:3.32:2010/06/13:forkpty:3:openpty:3: +○:LDP man-pages:3.32:1993/04/04:fpathconf:3:1998/03/20::nakano@apm.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.32:2010/09/20:fpclassify:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:fprintf:3:printf:3: +○:LDP man-pages:3.32:2001/12/15:fpurge:3:2002/01/14::nakano@apm.seikei.ac.jp:NAKANO Takeo: +ï¼ :LDP man-pages:3.32:1993/04/04:fputc:3:puts:3: +ï¼ :LDP man-pages:3.32:2008/08/29:fputc_unlocked:3:unlocked_stdio:3: +ï¼ :LDP man-pages:3.32:1993/04/04:fputs:3:puts:3: +ï¼ :LDP man-pages:3.32:2008/08/29:fputs_unlocked:3:unlocked_stdio:3: +○:LDP man-pages:3.32:1999/07/25:fputwc:3:2001/11/09::argrath@ub32.org:Kentaro Shirakata: +ï¼ :LDP man-pages:3.32:2008/08/29:fputwc_unlocked:3:unlocked_stdio:3: +○:LDP man-pages:3.32:1999/07/25:fputws:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: +ï¼ :LDP man-pages:3.32:2008/08/29:fputws_unlocked:3:unlocked_stdio:3: +○:LDP man-pages:3.32:1996/05/17:fread:3:2001/11/09::argrath@ub32.org:Kentaro Shirakata: +ï¼ :LDP man-pages:3.32:2008/08/29:fread_unlocked:3:unlocked_stdio:3: +ï¼ :LDP man-pages:3.32:2010/10/18:free:3:malloc:3: +ï¼ :LDP man-pages:3.32:2010/09/27:freeaddrinfo:3:getaddrinfo:3: +ï¼ :LDP man-pages:3.32:2010/09/04:freehostent:3:getipnodebyname:3: +※:LDP man-pages:3.32:2010/10/06:freeifaddrs:3:getifaddrs:3: +ï¼ :LDP man-pages:3.32:2009/02/23:freopen:3:fopen:3: +○:LDP man-pages:3.32:2010/09/20:frexp:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:frexpf:3:frexp:3: +ï¼ :LDP man-pages:3.32:2010/09/20:frexpl:3:frexp:3: +ï¼ :LDP man-pages:3.32:2010/09/20:fscanf:3:scanf:3: +○:LDP man-pages:3.32:1993/11/29:fseek:3:1998/04/27::nakano@apm.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.32:2001/11/05:fseeko:3:2006/01/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:1993/11/29:fsetpos:3:fseek:3: +ï¼ :LDP man-pages:3.32:2003/08/22:fstatvfs:3:statvfs:3: +ï¼ :LDP man-pages:3.32:1993/11/29:ftell:3:fseek:3: +ï¼ :LDP man-pages:3.32:2001/11/05:ftello:3:fseeko:3: +○:LDP man-pages:3.32:2010/02/25:ftime:3:2008/10/08::argrath@ub32.org:Kentaro Shirakata: +☆:LDP man-pages:3.31=>3.32:2001/11/28:ftok:3:2002/01/06::nakano@apm.seikei.ac.jp:NAKANO Takeo: +ï¼ :LDP man-pages:3.32:2008/08/29:ftrylockfile:3:flockfile:3: +○:LDP man-pages:3.32:2007/12/28:fts:3:2000/09/05::sato@complex.eng.hokudai.ac.jp:Yuichi SATO: +ï¼ :LDP man-pages:3.32:2007/12/28:fts_children:3:fts:3: +ï¼ :LDP man-pages:3.32:2007/12/28:fts_close:3:fts:3: +ï¼ :LDP man-pages:3.32:2007/12/28:fts_open:3:fts:3: +ï¼ :LDP man-pages:3.32:2007/12/28:fts_read:3:fts:3: +ï¼ :LDP man-pages:3.32:2007/12/28:fts_set:3:fts:3: +○:LDP man-pages:3.32:2010/09/20:ftw:3:2006/07/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2008/08/29:funlockfile:3:flockfile:3: +※:LDP man-pages:3.32:2009/12/13:futimens:3:utimensat:2: +○:LDP man-pages:3.32:2008/04/07:futimes:3:2006/07/31::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2010/09/20:fwide:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +ï¼ :LDP man-pages:3.32:2010/09/20:fwprintf:3:wprintf:3: +ï¼ :LDP man-pages:3.32:1996/05/17:fwrite:3:fread:3: +ï¼ :LDP man-pages:3.32:2008/08/29:fwrite_unlocked:3:unlocked_stdio:3: +※:LDP man-pages:3.32:2010/09/27:gai_cancel:3:getaddrinfo_a:3: +※:LDP man-pages:3.32:2010/09/27:gai_error:3:getaddrinfo_a:3: +ï¼ :LDP man-pages:3.32:2010/09/27:gai_strerror:3:getaddrinfo:3: +※:LDP man-pages:3.32:2010/09/27:gai_suspend:3:getaddrinfo_a:3: +○:LDP man-pages:3.32:2008/08/05:gamma:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2008/08/05:gammaf:3:gamma:3: +ï¼ :LDP man-pages:3.32:2008/08/05:gammal:3:gamma:3: +○:LDP man-pages:3.32:2010/09/20:gcvt:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:get_current_dir_name:3:getcwd:3: +ï¼ :LDP man-pages:3.32:2008/07/17:get_myaddress:3:rpc:3: +○:LDP man-pages:3.32:2010/09/27:getaddrinfo:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +×:LDP man-pages:3.32:2010/09/27:getaddrinfo_a:3::::: +ï¼ :LDP man-pages:3.32:2003/09/09:getaliasbyname:3:setaliasent:3: +ï¼ :LDP man-pages:3.32:2003/09/09:getaliasbyname_r:3:setaliasent:3: +ï¼ :LDP man-pages:3.32:2003/09/09:getaliasent:3:setaliasent:3: +ï¼ :LDP man-pages:3.32:2003/09/09:getaliasent_r:3:setaliasent:3: +ï¼ :LDP man-pages:3.32:2008/08/06:getc:3:gets:3: +ï¼ :LDP man-pages:3.32:2008/08/29:getc_unlocked:3:unlocked_stdio:3: +ï¼ :LDP man-pages:3.32:2008/08/06:getchar:3:gets:3: +ï¼ :LDP man-pages:3.32:2008/08/29:getchar_unlocked:3:unlocked_stdio:3: +○:LDP man-pages:3.32:2010/09/20:getcwd:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.32:2010/09/20:getdate:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:getdate_err:3:getdate:3: +ï¼ :LDP man-pages:3.32:2010/09/20:getdate_r:3:getdate:3: +ï¼ :LDP man-pages:3.32:2010/06/12:getdelim:3:getline:3: +○:LDP man-pages:3.32:2007/07/26:getdirentries:3:1998/04/30::nakano@apm.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.32:2008/03/17:getenv:3:2003/09/28::nakano@apm.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.32:2002/02/28:getfsent:3:2002/08/07::nakano@apm.seikei.ac.jp:NAKANO Takeo: +ï¼ :LDP man-pages:3.32:2002/02/28:getfsfile:3:getfsent:3: +ï¼ :LDP man-pages:3.32:2002/02/28:getfsspec:3:getfsent:3: +○:LDP man-pages:3.32:2010/10/21:getgrent:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2010/10/21:getgrent_r:3:2004/08/14::ysato444@yahoo.co.jp:Yuichi SATO: +ï¼ :LDP man-pages:3.32:2010/10/21:getgrgid:3:getgrnam:3: +ï¼ :LDP man-pages:3.32:2010/10/21:getgrgid_r:3:getgrnam:3: +☆:LDP man-pages:3.29=>3.32:2010/10/21:getgrnam:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/10/21:getgrnam_r:3:getgrnam:3: +○:LDP man-pages:3.32:2008/07/03:getgrouplist:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/10/04:gethostbyaddr:3:gethostbyname:3: +ï¼ :LDP man-pages:3.32:2010/10/04:gethostbyaddr_r:3:gethostbyname:3: +○:LDP man-pages:3.32:2010/10/04:gethostbyname:3:2007/06/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/10/04:gethostbyname2:3:gethostbyname:3: +ï¼ :LDP man-pages:3.32:2010/10/04:gethostbyname2_r:3:gethostbyname:3: +ï¼ :LDP man-pages:3.32:2010/10/04:gethostbyname_r:3:gethostbyname:3: +ï¼ :LDP man-pages:3.32:2010/10/04:gethostent:3:gethostbyname:3: +ï¼ :LDP man-pages:3.32:2010/10/04:gethostent_r:3:gethostbyname:3: +○:LDP man-pages:3.32:2010/09/20:gethostid:3:2009/01/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +×:LDP man-pages:3.32:2010/10/06:getifaddrs:3::::: +ï¼ :LDP man-pages:3.32:2010/09/04:getipnodebyaddr:3:getipnodebyname:3: +○:LDP man-pages:3.32:2010/09/04:getipnodebyname:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.32:2010/06/12:getline:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2007/12/08:getloadavg:3:2002/01/21::nakano@apm.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.32:2008/06/29:getlogin:3:2005/03/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2008/06/29:getlogin_r:3:getlogin:3: +○:LDP man-pages:3.32:2009/09/15:getmntent:3:2005/03/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2009/09/15:getmntent_r:3:getmntent:3: +○:LDP man-pages:3.32:2009/12/03:getnameinfo:3:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2008/08/19:getnetbyaddr:3:getnetent:3: +※:LDP man-pages:3.32:2010/09/10:getnetbyaddr_r:3:getnetent_r:3: +ï¼ :LDP man-pages:3.32:2008/08/19:getnetbyname:3:getnetent:3: +※:LDP man-pages:3.32:2010/09/10:getnetbyname_r:3:getnetent_r:3: +○:LDP man-pages:3.32:2008/08/19:getnetent:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +×:LDP man-pages:3.32:2010/09/10:getnetent_r:3::::: +ï¼ :LDP man-pages:3.32:2007/07/26:getnetgrent:3:setnetgrent:3: +ï¼ :LDP man-pages:3.32:2007/07/26:getnetgrent_r:3:setnetgrent:3: +○:LDP man-pages:3.32:2010/11/01:getopt:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/11/01:getopt_long:3:getopt:3: +ï¼ :LDP man-pages:3.32:2010/11/01:getopt_long_only:3:getopt:3: +○:LDP man-pages:3.32:2010/09/20:getpass:3:2001/02/14::nakano@apm.seikei.ac.jp:NAKANO Takeo:Older ver. is in obsolete/ +ï¼ :LDP man-pages:3.32:2008/08/19:getprotobyname:3:getprotoent:3: +※:LDP man-pages:3.32:2010/09/10:getprotobyname_r:3:getprotoent_r:3: +ï¼ :LDP man-pages:3.32:2008/08/19:getprotobynumber:3:getprotoent:3: +※:LDP man-pages:3.32:2010/09/10:getprotobynumber_r:3:getprotoent_r:3: +○:LDP man-pages:3.32:2008/08/19:getprotoent:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +×:LDP man-pages:3.32:2010/09/10:getprotoent_r:3::::: +○:LDP man-pages:3.32:2010/09/10:getpt:3:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2010/10/21:getpw:3:2008/10/08::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.32:2010/10/21:getpwent:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2010/10/21:getpwent_r:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.29=>3.32:2010/10/21:getpwnam:3:2005/10/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/10/21:getpwnam_r:3:getpwnam:3: +ï¼ :LDP man-pages:3.32:2010/10/21:getpwuid:3:getpwnam:3: +ï¼ :LDP man-pages:3.32:2010/10/21:getpwuid_r:3:getpwnam:3: +ï¼ :LDP man-pages:3.32:2008/08/19:getrpcbyname:3:getrpcent:3: +※:LDP man-pages:3.32:2010/09/10:getrpcbyname_r:3:getrpcent_r:3: +ï¼ :LDP man-pages:3.32:2008/08/19:getrpcbynumber:3:getrpcent:3: +※:LDP man-pages:3.32:2010/09/10:getrpcbynumber_r:3:getrpcent_r:3: +○:LDP man-pages:3.32:2008/08/19:getrpcent:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +×:LDP man-pages:3.32:2010/09/10:getrpcent_r:3::::: +○:LDP man-pages:3.32:1987/10/06:getrpcport:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +○:LDP man-pages:3.32:2008/08/06:gets:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2008/08/19:getservbyname:3:getservent:3: +※:LDP man-pages:3.32:2010/09/10:getservbyname_r:3:getservent_r:3: +ï¼ :LDP man-pages:3.32:2008/08/19:getservbyport:3:getservent:3: +※:LDP man-pages:3.32:2010/09/10:getservbyport_r:3:getservent_r:3: +○:LDP man-pages:3.32:2008/08/19:getservent:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +×:LDP man-pages:3.32:2010/09/10:getservent_r:3::::: +ï¼ :LDP man-pages:3.32:2010/02/25:getspent:3:getspnam:3: +ï¼ :LDP man-pages:3.32:2010/02/25:getspent_r:3:getspnam:3: +○:LDP man-pages:3.32:2010/02/25:getspnam:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/02/25:getspnam_r:3:getspnam:3: +○:LDP man-pages:3.32:2010/09/26:getsubopt:3:2007/06/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2002/07/18:getttyent:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO: +ï¼ :LDP man-pages:3.32:2002/07/18:getttynam:3:getttyent:3: +○:LDP man-pages:3.32:2010/09/10:getumask:3:2003/02/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2007/07/26:getusershell:3:1998/02/05::ishioka@dad.eec.toshiba.co.jp:ISHIOKA Takashi: +○:LDP man-pages:3.32:2008/06/29:getutent:3:2005/03/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2008/06/29:getutent_r:3:getutent:3: +ï¼ :LDP man-pages:3.32:2008/06/29:getutid:3:getutent:3: +ï¼ :LDP man-pages:3.32:2008/06/29:getutid_r:3:getutent:3: +ï¼ :LDP man-pages:3.32:2008/06/29:getutline:3:getutent:3: +ï¼ :LDP man-pages:3.32:2008/06/29:getutline_r:3:getutent:3: +×:LDP man-pages:3.32:2010/09/10:getutmp:3::::: +※:LDP man-pages:3.32:2010/09/10:getutmpx:3:getutmp:3: +ï¼ :LDP man-pages:3.32:2008/06/29:getutxent:3:getutent:3: +ï¼ :LDP man-pages:3.32:2008/06/29:getutxid:3:getutent:3: +ï¼ :LDP man-pages:3.32:2008/06/29:getutxline:3:getutent:3: +○:LDP man-pages:3.32:2010/09/26:getw:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: +ï¼ :LDP man-pages:3.32:1999/07/25:getwc:3:fgetwc:3: +ï¼ :LDP man-pages:3.32:2008/08/29:getwc_unlocked:3:unlocked_stdio:3: +○:LDP man-pages:3.32:1999/07/25:getwchar:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: +ï¼ :LDP man-pages:3.32:2008/08/29:getwchar_unlocked:3:unlocked_stdio:3: +ï¼ :LDP man-pages:3.32:2010/09/20:getwd:3:getcwd:3: +○:LDP man-pages:3.32:2007/10/10:glob:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: +ï¼ :LDP man-pages:3.32:2007/10/10:globfree:3:glob:3: +ï¼ :LDP man-pages:3.32:2010/02/25:gmtime:3:ctime:3: +ï¼ :LDP man-pages:3.32:2010/02/25:gmtime_r:3:ctime:3: +※:LDP man-pages:3.32:2010/09/10:gnu_dev_major:3:makedev:3: +※:LDP man-pages:3.32:2010/09/10:gnu_dev_makedev:3:makedev:3: +※:LDP man-pages:3.32:2010/09/10:gnu_dev_minor:3:makedev:3: +ï¼ :LDP man-pages:3.32:2010/09/10:gnu_get_libc_release:3:gnu_get_libc_version:3: +○:LDP man-pages:3.32:2010/09/10:gnu_get_libc_version:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2008/06/14:grantpt:3:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2007/07/26:gsignal:3:2003/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/10/04:h_errno:3:gethostbyname:3: +○:LDP man-pages:3.32:1994/08/18:hash:3:1999/08/17::nakano@apm.seikei.ac.jp:NAKANO Takeo: +ï¼ :LDP man-pages:3.32:2009/09/15:hasmntopt:3:getmntent:3: +ï¼ :LDP man-pages:3.32:2008/10/06:hcreate:3:hsearch:3: +ï¼ :LDP man-pages:3.32:2008/10/06:hcreate_r:3:hsearch:3: +ï¼ :LDP man-pages:3.32:2008/10/06:hdestroy:3:hsearch:3: +ï¼ :LDP man-pages:3.32:2008/10/06:hdestroy_r:3:hsearch:3: +ï¼ :LDP man-pages:3.32:2010/10/04:herror:3:gethostbyname:3: +○:LDP man-pages:3.32:2008/10/06:hsearch:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2008/10/06:hsearch_r:3:hsearch:3: +ï¼ :LDP man-pages:3.32:2010/10/04:hstrerror:3:gethostbyname:3: +※:LDP man-pages:3.32:2010/09/10:htobe16:3:endian:3: +※:LDP man-pages:3.32:2010/09/10:htobe32:3:endian:3: +※:LDP man-pages:3.32:2010/09/10:htobe64:3:endian:3: +※:LDP man-pages:3.32:2010/09/10:htole16:3:endian:3: +※:LDP man-pages:3.32:2010/09/10:htole32:3:endian:3: +※:LDP man-pages:3.32:2010/09/10:htole64:3:endian:3: +ï¼ :LDP man-pages:3.32:2009/01/15:htonl:3:byteorder:3: +ï¼ :LDP man-pages:3.32:2009/01/15:htons:3:byteorder:3: +○:LDP man-pages:3.32:2010/09/20:hypot:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:hypotf:3:hypot:3: +ï¼ :LDP man-pages:3.32:2010/09/20:hypotl:3:hypot:3: +○:LDP man-pages:3.32:2008/09/08:iconv:3:2000/07/11::sato@complex.eng.hokudai.ac.jp:Yuichi SATO: +○:LDP man-pages:3.32:2008/08/11:iconv_close:3:2000/07/11::sato@complex.eng.hokudai.ac.jp:Yuichi SATO: +○:LDP man-pages:3.32:2008/08/11:iconv_open:3:2007/06/01::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2010/09/20:ilogb:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:ilogbf:3:ilogb:3: +ï¼ :LDP man-pages:3.32:2010/09/20:ilogbl:3:ilogb:3: +ï¼ :LDP man-pages:3.32:2010/09/20:imaxabs:3:abs:3: +ï¼ :LDP man-pages:3.32:2010/09/20:imaxdiv:3:div:3: +○:LDP man-pages:3.32:2010/09/20:index:3:1997/12/12::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: +○:LDP man-pages:3.32:2008/06/19:inet:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2008/06/19:inet_addr:3:inet:3: +ï¼ :LDP man-pages:3.32:2008/06/19:inet_aton:3:inet:3: +ï¼ :LDP man-pages:3.32:2008/06/19:inet_lnaof:3:inet:3: +ï¼ :LDP man-pages:3.32:2008/06/19:inet_makeaddr:3:inet_addr:3: +ï¼ :LDP man-pages:3.32:2008/06/19:inet_netof:3:inet:3: +ï¼ :LDP man-pages:3.32:2008/06/19:inet_network:3:inet:3: +ï¼ :LDP man-pages:3.32:2008/06/19:inet_ntoa:3:inet:3: +○:LDP man-pages:3.32:2008/11/11:inet_ntop:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2008/06/18:inet_pton:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:1993/06/02:infnan:3:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.32:2007/07/26:initgroups:3:2005/02/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:initstate:3:random:3: +ï¼ :LDP man-pages:3.32:2008/03/07:initstate_r:3:random_r:3: +ï¼ :LDP man-pages:3.32:2007/07/26:innetgr:3:setnetgrent:3: +☆:LDP man-pages:3.25=>3.32:2010/09/09:insque:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.32:2010/11/11:intro:3:2008/02/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2007/12/28:iruserok:3:rcmd:3: +ï¼ :LDP man-pages:3.32:2010/09/20:isalnum:3:isalpha:3: +○:LDP man-pages:3.32:2010/09/20:isalpha:3:2007/05/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:isascii:3:isalpha:3: +○:LDP man-pages:3.32:2008/12/03:isatty:3:1997/2/10::nagoya@cc.hit-u.ac.jp:NAGOYA Hiroaki: +ï¼ :LDP man-pages:3.32:2010/09/20:isblank:3:isalpha:3: +ï¼ :LDP man-pages:3.32:2010/09/20:iscntrl:3:isalpha:3: +ï¼ :LDP man-pages:3.32:2010/09/20:isdigit:3:isalpha:3: +ï¼ :LDP man-pages:3.32:2010/09/20:isfinite:3:fpclassify:3: +ï¼ :LDP man-pages:3.32:2010/09/20:isgraph:3:isalpha:3: +○:LDP man-pages:3.32:2010/09/20:isgreater:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:isgreaterequal:3:isgreater:3: +ï¼ :LDP man-pages:3.32:2010/09/20:isinf:3:fpclassify:3: +ï¼ :LDP man-pages:3.32:2008/08/05:isinff:3:finite:3: +ï¼ :LDP man-pages:3.32:2008/08/05:isinfl:3:finite:3: +ï¼ :LDP man-pages:3.32:2010/09/20:isless:3:isgreater:3: +ï¼ :LDP man-pages:3.32:2010/09/20:islessequal:3:isgreater:3: +ï¼ :LDP man-pages:3.32:2010/09/20:islessgreater:3:isgreater:3: +ï¼ :LDP man-pages:3.32:2010/09/20:islower:3:isalpha:3: +ï¼ :LDP man-pages:3.32:2010/09/20:isnan:3:fpclassify:3: +ï¼ :LDP man-pages:3.32:2008/08/05:isnanf:3:finite:3: +ï¼ :LDP man-pages:3.32:2008/08/05:isnanl:3:finite:3: +ï¼ :LDP man-pages:3.32:2010/09/20:isnormal:3:fpclassify:3: +ï¼ :LDP man-pages:3.32:2010/09/20:isprint:3:isalpha:3: +ï¼ :LDP man-pages:3.32:2010/09/20:ispunct:3:isalpha:3: +ï¼ :LDP man-pages:3.32:2010/09/20:isspace:3:isalpha:3: +ï¼ :LDP man-pages:3.32:2010/09/20:isunordered:3:isgreater:3: +ï¼ :LDP man-pages:3.32:2010/09/20:isupper:3:isalpha:3: +○:LDP man-pages:3.32:1999/07/25:iswalnum:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.32:1999/07/25:iswalpha:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.32:2010/09/20:iswblank:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.32:1999/07/25:iswcntrl:3:1999/09/12::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.32:1999/07/25:iswctype:3:1999/09/12::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.32:1999/07/25:iswdigit:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.32:1999/07/25:iswgraph:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.32:1999/07/25:iswlower:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.32:1999/07/25:iswprint:3:1999/09/12::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.32:1999/07/25:iswpunct:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.32:1999/07/25:iswspace:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.32:1999/07/25:iswupper:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.32:1999/07/25:iswxdigit:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: +ï¼ :LDP man-pages:3.32:2010/09/20:isxdigit:3:isalpha:3: +○:LDP man-pages:3.32:2010/09/20:j0:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:j0f:3:j0:3: +ï¼ :LDP man-pages:3.32:2010/09/20:j0l:3:j0:3: +ï¼ :LDP man-pages:3.32:2010/09/20:j1:3:j0:3: +ï¼ :LDP man-pages:3.32:2010/09/20:j1f:3:j0:3: +ï¼ :LDP man-pages:3.32:2010/09/20:j1l:3:j0:3: +ï¼ :LDP man-pages:3.32:2010/09/20:jn:3:j0:3: +ï¼ :LDP man-pages:3.32:2010/09/20:jnf:3:j0:3: +ï¼ :LDP man-pages:3.32:2010/09/20:jnl:3:j0:3: +ï¼ :LDP man-pages:3.32:2007/07/26:jrand48:3:drand48:3: +ï¼ :LDP man-pages:3.32:2007/07/26:jrand48_r:3:drand48_r:3: +ï¼ :LDP man-pages:3.32:2002/07/18:key_decryptsession:3:key_setsecret:3: +ï¼ :LDP man-pages:3.32:2002/07/18:key_encryptsession:3:key_setsecret:3: +ï¼ :LDP man-pages:3.32:2002/07/18:key_gendes:3:key_setsecret:3: +ï¼ :LDP man-pages:3.32:2002/07/18:key_secretkey_is_set:3:key_setsecret:3: +○:LDP man-pages:3.32:2002/07/18:key_setsecret:3:2003/02/01::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2008/06/20:klogctl:3:syslog:2: +ï¼ :LDP man-pages:3.32:2010/09/20:l64a:3:a64l:3: +ï¼ :LDP man-pages:3.32:2010/09/20:labs:3:abs:3: +ï¼ :LDP man-pages:3.32:2010/02/25:lckpwdf:3:getspnam:3: +ï¼ :LDP man-pages:3.32:2007/07/26:lcong48:3:drand48:3: +ï¼ :LDP man-pages:3.32:2007/07/26:lcong48_r:3:drand48_r:3: +○:LDP man-pages:3.32:2010/09/20:ldexp:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:ldexpf:3:ldexp:3: +ï¼ :LDP man-pages:3.32:2010/09/20:ldexpl:3:ldexp:3: +ï¼ :LDP man-pages:3.32:2010/09/20:ldiv:3:div:3: +※:LDP man-pages:3.32:2010/09/10:le16toh:3:endian:3: +※:LDP man-pages:3.32:2010/09/10:le32toh:3:endian:3: +※:LDP man-pages:3.32:2010/09/10:le64toh:3:endian:3: +ï¼ :LDP man-pages:3.32:1999/09/27:lfind:3:lsearch:3: +○:LDP man-pages:3.32:2010/09/11:lgamma:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/11:lgamma_r:3:lgamma:3: +ï¼ :LDP man-pages:3.32:2010/09/11:lgammaf:3:lgamma:3: +ï¼ :LDP man-pages:3.32:2010/09/11:lgammaf_r:3:lgamma:3: +ï¼ :LDP man-pages:3.32:2010/09/11:lgammal:3:lgamma:3: +ï¼ :LDP man-pages:3.32:2010/09/11:lgammal_r:3:lgamma:3: +×:LDP man-pages:3.32:2010/10/20:lio_listio:3::::: +ï¼ :LDP man-pages:3.32:2010/09/20:llabs:3:abs:3: +ï¼ :LDP man-pages:3.32:2010/09/20:lldiv:3:div:3: +ï¼ :LDP man-pages:3.32:2010/09/20:llrint:3:lrint:3: +ï¼ :LDP man-pages:3.32:2010/09/20:llrintf:3:lrint:3: +ï¼ :LDP man-pages:3.32:2010/09/20:llrintl:3:lrint:3: +ï¼ :LDP man-pages:3.32:2010/09/20:llround:3:lround:3: +ï¼ :LDP man-pages:3.32:2010/09/20:llroundf:3:lround:3: +ï¼ :LDP man-pages:3.32:2010/09/20:llroundl:3:lround:3: +○:LDP man-pages:3.32:1993/04/25:localeconv:3:1998/05/25::tyoshino@eng.toyo.ac.jp:Takashi Yoshino: +ï¼ :LDP man-pages:3.32:2010/02/25:localtime:3:ctime:3: +ï¼ :LDP man-pages:3.32:2010/02/25:localtime_r:3:ctime:3: +○:LDP man-pages:3.32:2010/09/20:lockf:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2010/09/20:log:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2010/09/20:log10:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:log10f:3:log10:3: +ï¼ :LDP man-pages:3.32:2010/09/20:log10l:3:log10:3: +○:LDP man-pages:3.32:2010/09/20:log1p:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:log1pf:3:log1p:3: +ï¼ :LDP man-pages:3.32:2010/09/20:log1pl:3:log1p:3: +○:LDP man-pages:3.32:2010/09/12:log2:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/12:log2f:3:log2:3: +ï¼ :LDP man-pages:3.32:2010/09/12:log2l:3:log2:3: +○:LDP man-pages:3.32:2010/09/20:logb:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:logbf:3:logb:3: +ï¼ :LDP man-pages:3.32:2010/09/20:logbl:3:logb:3: +ï¼ :LDP man-pages:3.32:2010/09/20:logf:3:log:3: +○:LDP man-pages:3.32:2004/05/06:login:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: +ï¼ :LDP man-pages:3.32:2010/06/13:login_tty:3:openpty:3: +ï¼ :LDP man-pages:3.32:2010/09/20:logl:3:log:3: +ï¼ :LDP man-pages:3.32:2004/05/06:logout:3:login:3: +ï¼ :LDP man-pages:3.32:2008/07/02:logwtmp:3:updwtmp:3: +○:LDP man-pages:3.32:2009/01/13:longjmp:3:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2007/07/26:lrand48:3:drand48:3: +ï¼ :LDP man-pages:3.32:2007/07/26:lrand48_r:3:drand48_r:3: +○:LDP man-pages:3.32:2010/09/20:lrint:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:lrintf:3:lrint:3: +ï¼ :LDP man-pages:3.32:2010/09/20:lrintl:3:lrint:3: +○:LDP man-pages:3.32:2010/09/20:lround:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:lroundf:3:lround:3: +ï¼ :LDP man-pages:3.32:2010/09/20:lroundl:3:lround:3: +○:LDP man-pages:3.32:1999/09/27:lsearch:3:2005/03/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2004/12/11:lseek64:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: +ï¼ :LDP man-pages:3.32:2008/04/07:lutimes:3:futimes:3: +※:LDP man-pages:3.32:2010/09/10:major:3:makedev:3: +○:LDP man-pages:3.32:2009/03/31:makecontext:3:2008/12/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +×:LDP man-pages:3.32:2010/09/10:makedev:3::::: +☆:LDP man-pages:3.25=>3.32:2010/10/18:malloc:3:2007/10/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.25=>3.32:2010/10/13:malloc_hook:3:2003/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +×:LDP man-pages:3.32:2010/09/10:matherr:3::::: +○:LDP man-pages:3.32:1999/07/25:mblen:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +○:LDP man-pages:3.32:1999/07/25:mbrlen:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +○:LDP man-pages:3.32:2001/11/22:mbrtowc:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.32:2000/11/20:mbsinit:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +○:LDP man-pages:3.32:2010/09/15:mbsnrtowcs:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +○:LDP man-pages:3.32:1999/07/25:mbsrtowcs:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +○:LDP man-pages:3.32:1999/07/25:mbstowcs:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +○:LDP man-pages:3.32:2001/07/04:mbtowc:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +ï¼ :LDP man-pages:3.32:2010/09/20:memalign:3:posix_memalign:3: +○:LDP man-pages:3.32:2009/01/13:memccpy:3:1997/07/26::tyoshino@eng.toyo.ac.jp:Takashi Yoshino: +○:LDP man-pages:3.32:2009/12/04:memchr:3:2004/01/17::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.32:1993/04/10:memcmp:3:1997/12/17::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: +☆:LDP man-pages:3.31=>3.32:2010/11/15:memcpy:3:1997/02/21::tyoshino@eng.toyo.ac.jp:Takashi Yoshino: +○:LDP man-pages:3.32:2010/09/10:memfrob:3:1998/05/34::ishikawa@linux.or.jp:ISHIKAWA Mutsumi: +○:LDP man-pages:3.32:2008/12/05:memmem:3:1997/12/17::tyoshino@eng.toyo.ac.jp:Takashi Yoshino: +○:LDP man-pages:3.32:1993/04/10:memmove:3:2007/06/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2008/08/12:mempcpy:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO: +ï¼ :LDP man-pages:3.32:2009/12/04:memrchr:3:memchr:3: +○:LDP man-pages:3.32:1993/04/11:memset:3:1997/02/21::tyoshino@eng.toyo.ac.jp:Takashi Yoshino: +※:LDP man-pages:3.32:2010/09/10:minor:3:makedev:3: +○:LDP man-pages:3.32:2010/09/26:mkdtemp:3:2001/11/09::ysato@h4.dion.ne.jp:Yuichi SATO: +○:LDP man-pages:3.32:2008/06/12:mkfifo:3:2008/10/08::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.32:2009/12/13:mkfifoat:3:2006/08/19::ysato444@yahoo.co.jp:Yuichi SATO: +ï¼ :LDP man-pages:3.32:2010/09/26:mkostemp:3:mkstemp:3: +ï¼ :LDP man-pages:3.32:2010/09/26:mkostemps:3:mkstemp:3: +☆:LDP man-pages:3.24=>3.32:2010/09/26:mkstemp:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/26:mkstemps:3:mkstemp:3: +○:LDP man-pages:3.32:2010/09/20:mktemp:3:1999/04/10::tanisako@osa.dec.com:Kazuyuki Tanisako: +ï¼ :LDP man-pages:3.32:2010/02/25:mktime:3:ctime:3: +ï¼ :LDP man-pages:3.32:2008/04/22:mmap64:3:mmap2:2: +○:LDP man-pages:3.32:2010/09/20:modf:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:modff:3:modf:3: +ï¼ :LDP man-pages:3.32:2010/09/20:modfl:3:modf:3: +○:LDP man-pages:3.32:1993/06/04:mpool:3:1999/08/19::nakano@apm.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.32:2010/08/29:mq_close:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2010/08/29:mq_getattr:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2010/10/04:mq_notify:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2009/02/20:mq_open:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2010/09/20:mq_receive:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2010/09/20:mq_send:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/08/29:mq_setattr:3:mq_getattr:3: +ï¼ :LDP man-pages:3.32:2010/09/20:mq_timedreceive:3:mq_receive:3: +ï¼ :LDP man-pages:3.32:2010/09/20:mq_timedsend:3:mq_send:3: +○:LDP man-pages:3.32:2010/08/29:mq_unlink:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2007/07/26:mrand48:3:drand48:3: +ï¼ :LDP man-pages:3.32:2007/07/26:mrand48_r:3:drand48_r:3: +○:LDP man-pages:3.32:2002/07/20:mtrace:3:2003/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2002/07/20:muntrace:3:mtrace:3: +○:LDP man-pages:3.32:2010/09/20:nan:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:nanf:3:nan:3: +ï¼ :LDP man-pages:3.32:2010/09/20:nanl:3:nan:3: +ï¼ :LDP man-pages:3.32:2010/09/20:nearbyint:3:rint:3: +ï¼ :LDP man-pages:3.32:2010/09/20:nearbyintf:3:rint:3: +ï¼ :LDP man-pages:3.32:2010/09/20:nearbyintl:3:rint:3: +○:LDP man-pages:3.32:1999/05/14:netlink:3:1999/08/20::nakano@apm.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.32:2010/09/20:nextafter:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:nextafterf:3:nextafter:3: +ï¼ :LDP man-pages:3.32:2010/09/20:nextafterl:3:nextafter:3: +ï¼ :LDP man-pages:3.32:2010/09/20:nexttoward:3:nextafter:3: +ï¼ :LDP man-pages:3.32:2010/09/20:nexttowardf:3:nextafter:3: +ï¼ :LDP man-pages:3.32:2010/09/20:nexttowardl:3:nextafter:3: +ï¼ :LDP man-pages:3.32:2010/09/20:nftw:3:ftw:3: +○:LDP man-pages:3.32:2010/10/03:nl_langinfo:3:2001/07/15::KY4N-UCD@asahi-net.or.jp:UCHIDA Norihiro: +ï¼ :LDP man-pages:3.32:2007/07/26:nrand48:3:drand48:3: +ï¼ :LDP man-pages:3.32:2007/07/26:nrand48_r:3:drand48_r:3: +ï¼ :LDP man-pages:3.32:2009/01/15:ntohl:3:byteorder:3: +ï¼ :LDP man-pages:3.32:2009/01/15:ntohs:3:byteorder:3: +○:LDP man-pages:3.32:2008/07/12:offsetof:3:2006/07/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2008/12/05:on_exit:3:2009/01/15:o:amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/15:open_memstream:3:fmemopen:3: +ï¼ :LDP man-pages:3.32:2010/09/15:open_wmemstream:3:fmemopen:3: +○:LDP man-pages:3.32:2010/06/20:opendir:3:2007/10/14:o:amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2008/11/12:openlog:3:syslog:3: +○:LDP man-pages:3.32:2010/06/13:openpty:3:2006/02/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/11/01:optarg:3:getopt:3: +ï¼ :LDP man-pages:3.32:2010/11/01:opterr:3:getopt:3: +ï¼ :LDP man-pages:3.32:2010/11/01:optind:3:getopt:3: +ï¼ :LDP man-pages:3.32:2010/11/01:optopt:3:getopt:3: +ï¼ :LDP man-pages:3.32:2003/04/04:passwd2des:3:xcrypt:3: +ï¼ :LDP man-pages:3.32:1993/04/04:pathconf:3:fpathconf:3: +ï¼ :LDP man-pages:3.32:2010/02/03:pclose:3:popen:3: +○:LDP man-pages:3.32:2007/07/26:perror:3:2005/03/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2008/07/17:pmap_getmaps:3:rpc:3: +ï¼ :LDP man-pages:3.32:2008/07/17:pmap_getport:3:rpc:3: +ï¼ :LDP man-pages:3.32:2008/07/17:pmap_rmtcall:3:rpc:3: +ï¼ :LDP man-pages:3.32:2008/07/17:pmap_set:3:rpc:3: +ï¼ :LDP man-pages:3.32:2008/07/17:pmap_unset:3:rpc:3: +○:LDP man-pages:3.32:2010/02/03:popen:3:2008/11/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2010/09/20:posix_fallocate:3:2006/08/19::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.32:2010/09/20:posix_memalign:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2010/10/04:posix_openpt:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.32:2010/09/12:pow:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2008/08/11:pow10:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: +ï¼ :LDP man-pages:3.32:2008/08/11:pow10f:3:pow10:3: +ï¼ :LDP man-pages:3.32:2008/08/11:pow10l:3:pow10:3: +ï¼ :LDP man-pages:3.32:2010/09/12:powf:3:pow:3: +ï¼ :LDP man-pages:3.32:2010/09/12:powl:3:pow:3: +○:LDP man-pages:3.32:2010/09/20:printf:3:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2007/07/26:profil:3:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.32:2006/04/29:program_invocation_name:3:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2006/04/29:program_invocation_short_name:3:program_invocation_name:3: +ï¼ :LDP man-pages:3.32:2010/10/06:psiginfo:3:psignal:3: +☆:LDP man-pages:3.25=>3.32:2010/10/06:psignal:3:1997/12/26::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: +※:LDP man-pages:3.32:2008/11/11:pthread_attr_destroy:3:pthread_attr_init:3: +※:LDP man-pages:3.32:2010/09/10:pthread_attr_getaffinity_np:3:pthread_attr_setaffinity_np:3: +※:LDP man-pages:3.32:2010/02/03:pthread_attr_getdetachstate:3:pthread_attr_setdetachstate:3: +※:LDP man-pages:3.32:2008/10/24:pthread_attr_getguardsize:3:pthread_attr_setguardsize:3: +※:LDP man-pages:3.32:2008/11/10:pthread_attr_getinheritsched:3:pthread_attr_setinheritsched:3: +※:LDP man-pages:3.32:2010/02/03:pthread_attr_getschedparam:3:pthread_attr_setschedparam:3: +※:LDP man-pages:3.32:2010/02/03:pthread_attr_getschedpolicy:3:pthread_attr_setschedpolicy:3: +※:LDP man-pages:3.32:2008/10/24:pthread_attr_getscope:3:pthread_attr_setscope:3: +※:LDP man-pages:3.32:2008/10/24:pthread_attr_getstack:3:pthread_attr_setstack:3: +※:LDP man-pages:3.32:2008/10/24:pthread_attr_getstackaddr:3:pthread_attr_setstackaddr:3: +※:LDP man-pages:3.32:2008/11/05:pthread_attr_getstacksize:3:pthread_attr_setstacksize:3: +×:LDP man-pages:3.32:2008/11/11:pthread_attr_init:3::::: +×:LDP man-pages:3.32:2010/09/10:pthread_attr_setaffinity_np:3::::: +×:LDP man-pages:3.32:2010/02/03:pthread_attr_setdetachstate:3::::: +×:LDP man-pages:3.32:2008/10/24:pthread_attr_setguardsize:3::::: +×:LDP man-pages:3.32:2008/11/10:pthread_attr_setinheritsched:3::::: +×:LDP man-pages:3.32:2010/02/03:pthread_attr_setschedparam:3::::: +×:LDP man-pages:3.32:2010/02/03:pthread_attr_setschedpolicy:3::::: +×:LDP man-pages:3.32:2008/10/24:pthread_attr_setscope:3::::: +×:LDP man-pages:3.32:2008/10/24:pthread_attr_setstack:3::::: +×:LDP man-pages:3.32:2008/10/24:pthread_attr_setstackaddr:3::::: +×:LDP man-pages:3.32:2008/11/05:pthread_attr_setstacksize:3::::: +×:LDP man-pages:3.32:2008/11/17:pthread_cancel:3::::: +※:LDP man-pages:3.32:2008/11/24:pthread_cleanup_pop:3:pthread_cleanup_push:3: +※:LDP man-pages:3.32:2008/12/04:pthread_cleanup_pop_restore_np:3:pthread_cleanup_push_defer_np:3: +×:LDP man-pages:3.32:2008/11/24:pthread_cleanup_push:3::::: +×:LDP man-pages:3.32:2008/12/04:pthread_cleanup_push_defer_np:3::::: +×:LDP man-pages:3.32:2008/11/11:pthread_create:3::::: +×:LDP man-pages:3.32:2008/11/27:pthread_detach:3::::: +×:LDP man-pages:3.32:2009/03/30:pthread_equal:3::::: +×:LDP man-pages:3.32:2009/03/30:pthread_exit:3::::: +※:LDP man-pages:3.32:2010/09/10:pthread_getaffinity_np:3:pthread_setaffinity_np:3: +×:LDP man-pages:3.32:2010/09/10:pthread_getattr_np:3::::: +※:LDP man-pages:3.32:2009/04/10:pthread_getconcurrency:3:pthread_setconcurrency:3: +×:LDP man-pages:3.32:2009/02/08:pthread_getcpuclockid:3::::: +※:LDP man-pages:3.32:2008/11/17:pthread_getschedparam:3:pthread_setschedparam:3: +×:LDP man-pages:3.32:2008/11/27:pthread_join:3::::: +×:LDP man-pages:3.32:2009/01/28:pthread_kill:3::::: +×:LDP man-pages:3.32:2010/09/09:pthread_kill_other_threads_np:3::::: +×:LDP man-pages:3.32:2008/10/24:pthread_self:3::::: +×:LDP man-pages:3.32:2010/09/10:pthread_setaffinity_np:3::::: +×:LDP man-pages:3.32:2008/11/24:pthread_setcancelstate:3::::: +※:LDP man-pages:3.32:2008/11/24:pthread_setcanceltype:3:pthread_setcancelstate:3: +×:LDP man-pages:3.32:2009/04/10:pthread_setconcurrency:3::::: +×:LDP man-pages:3.32:2008/11/17:pthread_setschedparam:3::::: +×:LDP man-pages:3.32:2008/11/06:pthread_setschedprio:3::::: +×:LDP man-pages:3.32:2009/01/25:pthread_sigmask:3::::: +×:LDP man-pages:3.32:2010/11/16:pthread_sigqueue:3::::: +×:LDP man-pages:3.32:2008/11/17:pthread_testcancel:3::::: +※:LDP man-pages:3.32:2010/09/10:pthread_timedjoin_np:3:pthread_tryjoin_np:3: +×:LDP man-pages:3.32:2010/09/10:pthread_tryjoin_np:3::::: +×:LDP man-pages:3.32:2009/04/10:pthread_yield:3::::: +○:LDP man-pages:3.32:2008/09/03:ptsname:3:2005/03/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2008/09/03:ptsname_r:3:ptsname:3: +ï¼ :LDP man-pages:3.32:1993/04/04:putc:3:puts:3: +ï¼ :LDP man-pages:3.32:2008/08/29:putc_unlocked:3:unlocked_stdio:3: +ï¼ :LDP man-pages:3.32:1993/04/04:putchar:3:puts:3: +ï¼ :LDP man-pages:3.32:2008/08/29:putchar_unlocked:3:unlocked_stdio:3: +○:LDP man-pages:3.32:2007/07/26:putenv:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.32:2003/09/09:putgrent:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.32:2007/07/26:putpwent:3:1997/12/18::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: +○:LDP man-pages:3.32:1993/04/04:puts:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata: +ï¼ :LDP man-pages:3.32:2010/02/25:putspent:3:getspnam:3: +ï¼ :LDP man-pages:3.32:2008/06/29:pututline:3:getutent:3: +ï¼ :LDP man-pages:3.32:2008/06/29:pututxline:3:getutent:3: +ï¼ :LDP man-pages:3.32:2010/09/26:putw:3:getw:3: +ï¼ :LDP man-pages:3.32:1999/07/25:putwc:3:fputwc:3: +ï¼ :LDP man-pages:3.32:2008/08/29:putwc_unlocked:3:unlocked_stdio:3: +○:LDP man-pages:3.32:1999/07/25:putwchar:3:2001/11/09::argrath@ub32.org:Kentaro Shirakata: +ï¼ :LDP man-pages:3.32:2008/08/29:putwchar_unlocked:3:unlocked_stdio:3: +○:LDP man-pages:3.32:2010/09/20:qecvt:3:2002/09/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2007/07/26:qecvt_r:3:ecvt_r:3: +ï¼ :LDP man-pages:3.32:2010/09/20:qfcvt:3:qecvt:3: +ï¼ :LDP man-pages:3.32:2007/07/26:qfcvt_r:3:ecvt_r:3: +ï¼ :LDP man-pages:3.32:2010/09/20:qgcvt:3:qecvt:3: +○:LDP man-pages:3.32:2009/09/15:qsort:3:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2007/12/28:queue:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.32:2008/10/17:raise:3:1997/12/25::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: +☆:LDP man-pages:3.25=>3.32:2010/10/01:rand:3:2005/03/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/10/01:rand_r:3:rand:3: +○:LDP man-pages:3.32:2010/09/20:random:3:1997/01/21::tyoshino@eng.toyo.ac.jp:YOSHINO Takashi: +○:LDP man-pages:3.32:2008/03/07:random_r:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2009/12/04:rawmemchr:3:memchr:3: +○:LDP man-pages:3.32:2007/12/28:rcmd:3:1999/03/01::nakano@apm.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.32:1995/07/14:re_comp:3:1997/12/18::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: +ï¼ :LDP man-pages:3.32:1995/07/14:re_exec:3:re_comp:3: +○:LDP man-pages:3.32:2010/09/10:readdir:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/10:readdir_r:3:readdir:3: +ï¼ :LDP man-pages:3.32:2010/10/18:realloc:3:malloc:3: +○:LDP man-pages:3.32:2010/09/20:realpath:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:1994/08/18:recno:3:1999/08/19::nakano@apm.seikei.ac.jp:NAKANO Takeo: +ï¼ :LDP man-pages:3.32:2008/05/29:regcomp:3:regex:3: +ï¼ :LDP man-pages:3.32:2008/05/29:regerror:3:regex:3: +○:LDP man-pages:3.32:2008/05/29:regex:3:2005/03/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2008/05/29:regexec:3:regex:3: +ï¼ :LDP man-pages:3.32:2008/05/29:regfree:3:regex:3: +ï¼ :LDP man-pages:3.32:2008/07/17:registerrpc:3:rpc:3: +○:LDP man-pages:3.32:2010/09/20:remainder:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:remainderf:3:remainder:3: +ï¼ :LDP man-pages:3.32:2010/09/20:remainderl:3:remainder:3: +○:LDP man-pages:3.32:2008/12/03:remove:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata: +ï¼ :LDP man-pages:3.32:2010/09/09:remque:3:insque:3: +○:LDP man-pages:3.32:2010/09/20:remquo:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:remquof:3:remquo:3: +ï¼ :LDP man-pages:3.32:2010/09/20:remquol:3:remquo:3: +ï¼ :LDP man-pages:3.32:2010/06/17:res_init:3:resolver:3: +ï¼ :LDP man-pages:3.32:2010/06/17:res_mkquery:3:resolver:3: +ï¼ :LDP man-pages:3.32:2010/06/17:res_query:3:resolver:3: +ï¼ :LDP man-pages:3.32:2010/06/17:res_querydomain:3:resolver:3: +ï¼ :LDP man-pages:3.32:2010/06/17:res_search:3:resolver:3: +ï¼ :LDP man-pages:3.32:2010/06/17:res_send:3:resolver:3: +○:LDP man-pages:3.32:2010/06/17:resolver:3:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: +ï¼ :LDP man-pages:3.32:1993/11/29:rewind:3:fseek:3: +○:LDP man-pages:3.32:1995/06/11:rewinddir:3:1997/12/24::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: +○:LDP man-pages:3.32:2010/09/10:rexec:3:2005/12/28::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:rindex:3:index:3: +○:LDP man-pages:3.32:2010/09/20:rint:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:rintf:3:rint:3: +ï¼ :LDP man-pages:3.32:2010/09/20:rintl:3:rint:3: +○:LDP man-pages:3.32:2010/09/20:round:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:roundf:3:round:3: +ï¼ :LDP man-pages:3.32:2010/09/20:roundl:3:round:3: +○:LDP man-pages:3.32:2008/07/17:rpc:3:2001/11/09::ysato@h4.dion.ne.jp:Yuichi SATO: +○:LDP man-pages:3.32:2007/07/26:rpmatch:3:2006/07/31::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2007/12/28:rresvport:3:rcmd:3: +○:LDP man-pages:3.32:2010/02/25:rtime:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.32:2010/01/11:rtnetlink:3:1999/08/20::nakano@apm.seikei.ac.jp:NAKANO Takeo: +ï¼ :LDP man-pages:3.32:2007/12/28:ruserok:3:rcmd:3: +○:LDP man-pages:3.32:2010/09/20:scalb:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:scalbf:3:scalb:3: +ï¼ :LDP man-pages:3.32:2010/09/20:scalbl:3:scalb:3: +×:LDP man-pages:3.32:2010/09/20:scalbln:3::::: +※:LDP man-pages:3.32:2010/09/20:scalblnf:3:scalbln:3: +※:LDP man-pages:3.32:2010/09/20:scalblnl:3:scalbln:3: +※:LDP man-pages:3.32:2010/09/20:scalbn:3:scalbln:3: +※:LDP man-pages:3.32:2010/09/20:scalbnf:3:scalbln:3: +※:LDP man-pages:3.32:2010/09/20:scalbnl:3:scalbln:3: +○:LDP man-pages:3.32:2009/02/10:scandir:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2010/09/20:scanf:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2010/10/31:sched_getcpu:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2007/07/26:seed48:3:drand48:3: +ï¼ :LDP man-pages:3.32:2007/07/26:seed48_r:3:drand48_r:3: +○:LDP man-pages:3.32:2009/03/11:seekdir:3:1997/12/24::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: +○:LDP man-pages:3.32:2006/03/25:sem_close:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2006/03/25:sem_destroy:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2006/03/25:sem_getvalue:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2008/07/27:sem_init:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2009/02/20:sem_open:3:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2009/03/30:sem_post:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/02/25:sem_timedwait:3:sem_wait:3: +ï¼ :LDP man-pages:3.32:2010/02/25:sem_trywait:3:sem_wait:3: +○:LDP man-pages:3.32:2006/03/25:sem_unlink:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2010/02/25:sem_wait:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2003/09/09:setaliasent:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.32:2008/06/26:setbuf:3:2001/07/14::ysato@h4.dion.ne.jp:Yuichi SATO: +ï¼ :LDP man-pages:3.32:2008/06/26:setbuffer:3:setbuf:3: +○:LDP man-pages:3.32:2009/09/20:setenv:3:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: +ï¼ :LDP man-pages:3.32:2002/02/28:setfsent:3:getfsent:3: +ï¼ :LDP man-pages:3.32:2010/10/21:setgrent:3:getgrent:3: +ï¼ :LDP man-pages:3.32:2010/10/04:sethostent:3:gethostbyname:3: +ï¼ :LDP man-pages:3.32:2010/09/20:sethostid:3:gethostid:3: +○:LDP man-pages:3.32:2009/06/26:setjmp:3:2009/03/05::argrath@ub32.org:Kentaro Shirakata: +ï¼ :LDP man-pages:3.32:2003/04/04:setkey:3:encrypt:3: +ï¼ :LDP man-pages:3.32:2003/04/04:setkey_r:3:encrypt:3: +ï¼ :LDP man-pages:3.32:2008/06/26:setlinebuf:3:setbuf:3: +○:LDP man-pages:3.32:2008/12/05:setlocale:3:2002/10/12::nakano@apm.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.32:2001/10/05:setlogmask:3:2001/11/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2009/09/15:setmntent:3:getmntent:3: +ï¼ :LDP man-pages:3.32:2008/08/19:setnetent:3:getnetent:3: +○:LDP man-pages:3.32:2007/07/26:setnetgrent:3:2005/03/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2008/08/19:setprotoent:3:getprotoent:3: +ï¼ :LDP man-pages:3.32:2010/10/21:setpwent:3:getpwent:3: +ï¼ :LDP man-pages:3.32:2008/08/19:setrpcent:3:getrpcent:3: +ï¼ :LDP man-pages:3.32:2008/08/19:setservent:3:getservent:3: +ï¼ :LDP man-pages:3.32:2010/02/25:setspent:3:getspnam:3: +ï¼ :LDP man-pages:3.32:2010/09/20:setstate:3:random:3: +ï¼ :LDP man-pages:3.32:2008/03/07:setstate_r:3:random_r:3: +ï¼ :LDP man-pages:3.32:2002/07/18:setttyent:3:getttyent:3: +ï¼ :LDP man-pages:3.32:2007/07/26:setusershell:3:getusershell:3: +ï¼ :LDP man-pages:3.32:2008/06/29:setutent:3:getutent:3: +ï¼ :LDP man-pages:3.32:2008/06/29:setutxent:3:getutent:3: +ï¼ :LDP man-pages:3.32:2008/06/26:setvbuf:3:setbuf:3: +ï¼ :LDP man-pages:3.32:2010/02/25:sgetspent:3:getspnam:3: +ï¼ :LDP man-pages:3.32:2010/02/25:sgetspent_r:3:getspnam:3: +○:LDP man-pages:3.32:2009/02/25:shm_open:3:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2009/02/25:shm_unlink:3:shm_open:3: +ï¼ :LDP man-pages:3.32:2008/09/01:sigaddset:3:sigsetops:3: +ï¼ :LDP man-pages:3.32:2008/09/01:sigandset:3:sigsetops:3: +ï¼ :LDP man-pages:3.32:2007/07/26:sigblock:3:sigvec:3: +ï¼ :LDP man-pages:3.32:2008/09/01:sigdelset:3:sigsetops:3: +ï¼ :LDP man-pages:3.32:2008/09/01:sigemptyset:3:sigsetops:3: +ï¼ :LDP man-pages:3.32:2008/09/01:sigfillset:3:sigsetops:3: +ï¼ :LDP man-pages:3.32:2007/07/26:siggetmask:3:sigvec:3: +ï¼ :LDP man-pages:3.32:2010/09/20:sighold:3:sigset:3: +ï¼ :LDP man-pages:3.32:2010/09/20:sigignore:3:sigset:3: +○:LDP man-pages:3.32:2010/09/26:siginterrupt:3:1998/05/24::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +ï¼ :LDP man-pages:3.32:2008/09/01:sigisemptyset:3:sigsetops:3: +ï¼ :LDP man-pages:3.32:2008/09/01:sigismember:3:sigsetops:3: +ï¼ :LDP man-pages:3.32:2009/01/13:siglongjmp:3:longjmp:3: +ï¼ :LDP man-pages:3.32:2007/07/26:sigmask:3:sigvec:3: +○:LDP man-pages:3.32:2010/09/20:signbit:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/11:signgam:3:lgamma:3: +○:LDP man-pages:3.32:2009/02/04:significand:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: +ï¼ :LDP man-pages:3.32:2009/02/04:significandf:3:significand:3: +ï¼ :LDP man-pages:3.32:2009/02/04:significandl:3:significand:3: +ï¼ :LDP man-pages:3.32:2008/09/01:sigorset:3:sigsetops:3: +○:LDP man-pages:3.32:2010/09/12:sigpause:3:2005/12/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:sigrelse:3:sigset:3: +○:LDP man-pages:3.32:2010/09/20:sigset:3:2005/12/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2009/06/26:sigsetjmp:3:setjmp:3: +ï¼ :LDP man-pages:3.32:2007/07/26:sigsetmask:3:sigvec:3: +○:LDP man-pages:3.32:2008/09/01:sigsetops:3:2005/12/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/26:sigstack:3:sigaltstack:2: +○:LDP man-pages:3.32:2007/07/26:sigvec:3:2005/12/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2010/09/10:sigwait:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2010/09/11:sin:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2008/08/11:sincos:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2008/08/11:sincosf:3:sincos:3: +ï¼ :LDP man-pages:3.32:2008/08/11:sincosl:3:sincos:3: +ï¼ :LDP man-pages:3.32:2010/09/11:sinf:3:sin:3: +○:LDP man-pages:3.32:2010/09/20:sinh:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:sinhf:3:sinh:3: +ï¼ :LDP man-pages:3.32:2010/09/20:sinhl:3:sinh:3: +ï¼ :LDP man-pages:3.32:2010/09/11:sinl:3:sin:3: +○:LDP man-pages:3.32:2010/02/03:sleep:3:1997/01/21::tyoshino@eng.toyo.ac.jp:YOSHINO Takashi: +ï¼ :LDP man-pages:3.32:2010/09/20:snprintf:3:printf:3: +○:LDP man-pages:3.32:2008/12/03:sockatmark:3:2006/08/19::ysato444@yahoo.co.jp:Yuichi SATO: +ï¼ :LDP man-pages:3.32:2010/09/20:sprintf:3:printf:3: +○:LDP man-pages:3.32:2010/09/20:sqrt:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:sqrtf:3:sqrt:3: +ï¼ :LDP man-pages:3.32:2010/09/20:sqrtl:3:sqrt:3: +ï¼ :LDP man-pages:3.32:2010/10/01:srand:3:rand:3: +ï¼ :LDP man-pages:3.32:2007/07/26:srand48:3:drand48:3: +ï¼ :LDP man-pages:3.32:2007/07/26:srand48_r:3:drand48_r:3: +ï¼ :LDP man-pages:3.32:2010/09/20:srandom:3:random:3: +ï¼ :LDP man-pages:3.32:2008/03/07:srandom_r:3:random_r:3: +ï¼ :LDP man-pages:3.32:2010/09/20:sscanf:3:scanf:3: +ï¼ :LDP man-pages:3.32:2007/07/26:ssignal:3:gsignal:3: +○:LDP man-pages:3.32:2003/08/22:statvfs:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.32:2001/10/14:stdarg:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata: +ï¼ :LDP man-pages:3.32:2008/07/14:stderr:3:stdin:3: +○:LDP man-pages:3.32:2008/07/14:stdin:3:2005/09/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2001/12/26:stdio:3:2004/02/06::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.32:2001/12/16:stdio_ext:3:2002/08/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2008/07/14:stdout:3:stdin:3: +○:LDP man-pages:3.32:2010/09/15:stpcpy:3:1997/12/26::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: +○:LDP man-pages:3.32:2010/09/15:stpncpy:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +○:LDP man-pages:3.32:2010/09/20:strcasecmp:3:1997/12/25::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: +ï¼ :LDP man-pages:3.32:2010/09/20:strcasestr:3:strstr:3: +○:LDP man-pages:3.32:2010/09/20:strcat:3:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.32:2010/09/20:strchr:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:strchrnul:3:strchr:3: +○:LDP man-pages:3.32:2010/09/20:strcmp:3:2001/10/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2010/09/20:strcoll:3:2007/06/01::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2010/09/20:strcpy:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: +ï¼ :LDP man-pages:3.32:2010/09/20:strcspn:3:strspn:3: +○:LDP man-pages:3.32:2010/09/26:strdup:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata: +ï¼ :LDP man-pages:3.32:2010/09/26:strdupa:3:strdup:3: +○:LDP man-pages:3.32:2009/03/30:strerror:3:2005/12/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2009/03/30:strerror_r:3:strerror:3: +○:LDP man-pages:3.32:2000/12/05:strfmon:3:2001/02/14::nakano@apm.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.32:2010/09/20:strfry:3:1998/05/25::motoki@hal.t.u-tokyo.ac.jp:Akihiro Motoki: +○:LDP man-pages:3.32:2010/01/17:strftime:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2010/02/25:string:3:1997/01/20::yoshino@civil.jcn.nihon-u.ac.jp:YOSHINO Takashi: +○:LDP man-pages:3.32:1993/04/12:strlen:3:1997/01/20::tyoshino@eng.toyo.ac.jp:YOSHINO Takashi: +ï¼ :LDP man-pages:3.32:2010/09/20:strncasecmp:3:strcasecmp:3: +ï¼ :LDP man-pages:3.32:2010/09/20:strncat:3:strcat:3: +ï¼ :LDP man-pages:3.32:2010/09/20:strncmp:3:strcmp:3: +ï¼ :LDP man-pages:3.32:2010/09/20:strncpy:3:strcpy:3: +ï¼ :LDP man-pages:3.32:2010/09/26:strndup:3:strdup:3: +ï¼ :LDP man-pages:3.32:2010/09/26:strndupa:3:strdup:3: +○:LDP man-pages:3.32:2010/10/31:strnlen:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +○:LDP man-pages:3.32:2010/09/20:strpbrk:3:1999/12/25::argrath@yo.rim.or.jp:Kentaro Shirakata: +○:LDP man-pages:3.32:2009/12/05:strptime:3:2002/01/14::ysato@h4.dion.ne.jp:Yuichi SATO: +ï¼ :LDP man-pages:3.32:2010/09/20:strrchr:3:strchr:3: +○:LDP man-pages:3.32:2010/09/20:strsep:3:2009/03/05::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.32:2010/09/15:strsignal:3:1999/12/25::argrath@yo.rim.or.jp:Kentaro Shirakata: +○:LDP man-pages:3.32:2010/09/20:strspn:3:1997/12/16::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: +○:LDP man-pages:3.32:2010/09/20:strstr:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.32:2010/09/20:strtod:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:strtof:3:strtod:3: +○:LDP man-pages:3.32:2003/11/28:strtoimax:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.32:2010/09/27:strtok:3:2005/11/19:o:amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/27:strtok_r:3:strtok:3: +○:LDP man-pages:3.32:2010/09/20:strtol:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:strtold:3:strtod:3: +ï¼ :LDP man-pages:3.32:2010/09/20:strtoll:3:strtol:3: +ï¼ :LDP man-pages:3.32:2010/09/20:strtoq:3:strtol:3: +○:LDP man-pages:3.32:2010/09/20:strtoul:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:strtoull:3:strtoul:3: +ï¼ :LDP man-pages:3.32:2003/11/28:strtoumax:3:strtoimax:3: +ï¼ :LDP man-pages:3.32:2010/09/20:strtouq:3:strtoul:3: +○:LDP man-pages:3.32:2001/12/19:strverscmp:3:2002/09/22::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2010/09/20:strxfrm:3:1999/03/24::ss236rx@ymg.urban.ne.jp:Shouichi Saito: +ï¼ :LDP man-pages:3.32:2008/07/17:svc_destroy:3:rpc:3: +ï¼ :LDP man-pages:3.32:2008/07/17:svc_freeargs:3:rpc:3: +ï¼ :LDP man-pages:3.32:2008/07/17:svc_getargs:3:rpc:3: +ï¼ :LDP man-pages:3.32:2008/07/17:svc_getcaller:3:rpc:3: +ï¼ :LDP man-pages:3.32:2008/07/17:svc_getreq:3:rpc:3: +ï¼ :LDP man-pages:3.32:2008/07/17:svc_getreqset:3:rpc:3: +ï¼ :LDP man-pages:3.32:2008/07/17:svc_register:3:rpc:3: +ï¼ :LDP man-pages:3.32:2008/07/17:svc_run:3:rpc:3: +ï¼ :LDP man-pages:3.32:2008/07/17:svc_sendreply:3:rpc:3: +ï¼ :LDP man-pages:3.32:2008/07/17:svc_unregister:3:rpc:3: +ï¼ :LDP man-pages:3.32:2008/07/17:svcerr_auth:3:rpc:3: +ï¼ :LDP man-pages:3.32:2008/07/17:svcerr_decode:3:rpc:3: +ï¼ :LDP man-pages:3.32:2008/07/17:svcerr_noproc:3:rpc:3: +ï¼ :LDP man-pages:3.32:2008/07/17:svcerr_noprog:3:rpc:3: +ï¼ :LDP man-pages:3.32:2008/07/17:svcerr_progvers:3:rpc:3: +ï¼ :LDP man-pages:3.32:2008/07/17:svcerr_systemerr:3:rpc:3: +ï¼ :LDP man-pages:3.32:2008/07/17:svcerr_weakauth:3:rpc:3: +ï¼ :LDP man-pages:3.32:2008/07/17:svcfd_create:3:rpc:3: +ï¼ :LDP man-pages:3.32:2008/07/17:svcraw_create:3:rpc:3: +ï¼ :LDP man-pages:3.32:2008/07/17:svctcp_create:3:rpc:3: +ï¼ :LDP man-pages:3.32:2008/07/17:svcudp_bufcreate:3:rpc:3: +ï¼ :LDP man-pages:3.32:2008/07/17:svcudp_create:3:rpc:3: +○:LDP man-pages:3.32:2001/12/15:swab:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata: +ï¼ :LDP man-pages:3.32:2009/03/31:swapcontext:3:makecontext:3: +ï¼ :LDP man-pages:3.32:2010/09/20:swprintf:3:wprintf:3: +ï¼ :LDP man-pages:3.32:2007/07/26:sys_errlist:3:perror:3: +ï¼ :LDP man-pages:3.32:2007/07/26:sys_nerr:3:perror:3: +○:LDP man-pages:3.32:2007/12/12:sysconf:3:2005/03/31::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2008/11/12:syslog:3:2008/07/24:o:argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.32:2010/09/10:system:3:2005/03/12:o:amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2007/05/04:sysv_signal:3:2007/06/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2010/09/11:tan:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/11:tanf:3:tan:3: +○:LDP man-pages:3.32:2010/09/20:tanh:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:tanhf:3:tanh:3: +ï¼ :LDP man-pages:3.32:2010/09/20:tanhl:3:tanh:3: +ï¼ :LDP man-pages:3.32:2010/09/11:tanl:3:tan:3: +ï¼ :LDP man-pages:3.32:2010/06/20:tcdrain:3:termios:3: +ï¼ :LDP man-pages:3.32:2010/06/20:tcflow:3:termios:3: +ï¼ :LDP man-pages:3.32:2010/06/20:tcflush:3:termios:3: +ï¼ :LDP man-pages:3.32:2010/06/20:tcgetattr:3:termios:3: +○:LDP man-pages:3.32:2003/01/28:tcgetpgrp:3:2003/08/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2010/09/10:tcgetsid:3:2003/08/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/06/20:tcsendbreak:3:termios:3: +ï¼ :LDP man-pages:3.32:2010/06/20:tcsetattr:3:termios:3: +ï¼ :LDP man-pages:3.32:2003/01/28:tcsetpgrp:3:tcgetpgrp:3: +ï¼ :LDP man-pages:3.32:2008/09/23:tdelete:3:tsearch:3: +ï¼ :LDP man-pages:3.32:2008/09/23:tdestroy:3:tsearch:3: +○:LDP man-pages:3.32:2009/03/11:telldir:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2007/07/26:tempnam:3:2006/07/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2010/06/20:termios:3:2007/05/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2008/09/23:tfind:3:tsearch:3: +○:LDP man-pages:3.32:2010/09/20:tgamma:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:tgammaf:3:tgamma:3: +ï¼ :LDP man-pages:3.32:2010/09/20:tgammal:3:tgamma:3: +○:LDP man-pages:3.32:2007/07/26:timegm:3:2002/01/14::nakano@apm.seikei.ac.jp:NAKANO Takeo: +ï¼ :LDP man-pages:3.32:2007/07/26:timelocal:3:timegm:3: +○:LDP man-pages:3.32:2010/02/25:timeradd:3:2007/10/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/02/25:timerclear:3:timeradd:3: +ï¼ :LDP man-pages:3.32:2010/02/25:timercmp:3:timeradd:3: +ï¼ :LDP man-pages:3.32:2010/02/25:timerisset:3:timeradd:3: +ï¼ :LDP man-pages:3.32:2010/02/25:timersub:3:timeradd:3: +ï¼ :LDP man-pages:3.32:2010/02/25:timezone:3:tzset:3: +○:LDP man-pages:3.32:2008/07/14:tmpfile:3:2001/12/14:o:ysato@h4.dion.ne.jp:Yuichi SATO: +○:LDP man-pages:3.32:2010/09/10:tmpnam:3:2006/07/26:o:amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/10:tmpnam_r:3:tmpnam:3: +○:LDP man-pages:3.32:2009/03/15:toascii:3:1997/12/16::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: +ï¼ :LDP man-pages:3.32:1993/04/04:tolower:3:toupper:3: +○:LDP man-pages:3.32:1993/04/04:toupper:3:1997/04/29::rui@linux.or.jp:Ueyama Rui: +○:LDP man-pages:3.32:1999/07/25:towctrans:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.32:1999/07/25:towlower:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.32:1999/07/25:towupper:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.32:2010/09/20:trunc:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/09/20:truncf:3:trunc:3: +ï¼ :LDP man-pages:3.32:2010/09/20:truncl:3:trunc:3: +○:LDP man-pages:3.32:2008/09/23:tsearch:3:2002/02/14::ysato@h4.dion.ne.jp:Yuichi SATO: +○:LDP man-pages:3.32:2008/07/14:ttyname:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata: +ï¼ :LDP man-pages:3.32:2008/07/14:ttyname_r:3:ttyname:3: +○:LDP man-pages:3.32:2010/09/20:ttyslot:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO: +ï¼ :LDP man-pages:3.32:2008/09/23:twalk:3:tsearch:3: +ï¼ :LDP man-pages:3.32:2010/02/25:tzname:3:tzset:3: +○:LDP man-pages:3.32:2010/02/25:tzset:3:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2010/09/20:ualarm:3:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/02/25:ulckpwdf:3:getspnam:3: +○:LDP man-pages:3.32:2008/08/06:ulimit:3:1998/12/06::nakano@apm.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.32:2010/02/10:undocumented:3:2005/02/21::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2008/08/06:ungetc:3:gets:3: +○:LDP man-pages:3.32:1999/09/19:ungetwc:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +○:LDP man-pages:3.32:2008/08/29:unlocked_stdio:3:2001/11/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2008/06/14:unlockpt:3:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2009/09/20:unsetenv:3:setenv:3: +○:LDP man-pages:3.32:2008/07/02:updwtmp:3:2008/10/08::argrath@ub32.org:Kentaro Shirakata: +ï¼ :LDP man-pages:3.32:2008/07/02:updwtmpx:3:updwtmp:3: +☆:LDP man-pages:3.31=>3.32:2010/12/03:usleep:3:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2008/06/29:utmpname:3:getutent:3: +ï¼ :LDP man-pages:3.32:2008/06/29:utmpxname:3:getutent:3: +ï¼ :LDP man-pages:3.32:2001/10/14:va_arg:3:stdarg:3: +ï¼ :LDP man-pages:3.32:2001/10/14:va_copy:3:stdarg:3: +ï¼ :LDP man-pages:3.32:2001/10/14:va_end:3:stdarg:3: +ï¼ :LDP man-pages:3.32:2001/10/14:va_start:3:stdarg:3: +ï¼ :LDP man-pages:3.32:2010/09/20:valloc:3:posix_memalign:3: +ï¼ :LDP man-pages:3.32:2001/12/18:vasprintf:3:asprintf:3: +ï¼ :LDP man-pages:3.32:2010/09/15:vdprintf:3:dprintf:3: +ï¼ :LDP man-pages:3.32:2007/12/28:verr:3:err:3: +ï¼ :LDP man-pages:3.32:2007/12/28:verrx:3:err:3: +ï¼ :LDP man-pages:3.32:2009/02/10:versionsort:3:scandir:3: +ï¼ :LDP man-pages:3.32:2010/09/20:vfprintf:3:printf:3: +ï¼ :LDP man-pages:3.32:2010/09/20:vfscanf:3:scanf:3: +ï¼ :LDP man-pages:3.32:2010/09/20:vfwprintf:3:wprintf:3: +ï¼ :LDP man-pages:3.32:2010/12/03:vlimit:3:getrlimit:2: +ï¼ :LDP man-pages:3.32:2010/09/20:vprintf:3:printf:3: +ï¼ :LDP man-pages:3.32:2010/09/20:vscanf:3:scanf:3: +ï¼ :LDP man-pages:3.32:2010/09/20:vsnprintf:3:printf:3: +ï¼ :LDP man-pages:3.32:2010/09/20:vsprintf:3:printf:3: +ï¼ :LDP man-pages:3.32:2010/09/20:vsscanf:3:scanf:3: +ï¼ :LDP man-pages:3.32:2010/09/20:vswprintf:3:wprintf:3: +ï¼ :LDP man-pages:3.32:2008/11/12:vsyslog:3:syslog:3: +ï¼ :LDP man-pages:3.32:2010/09/26:vtimes:3:getrusage:2: +ï¼ :LDP man-pages:3.32:2007/12/28:vwarn:3:err:3: +ï¼ :LDP man-pages:3.32:2007/12/28:vwarnx:3:err:3: +ï¼ :LDP man-pages:3.32:2010/09/20:vwprintf:3:wprintf:3: +ï¼ :LDP man-pages:3.32:2007/12/28:warn:3:err:3: +ï¼ :LDP man-pages:3.32:2007/12/28:warnx:3:err:3: +○:LDP man-pages:3.32:2010/09/15:wcpcpy:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.32:2010/09/15:wcpncpy:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.32:1999/07/25:wcrtomb:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.32:2010/09/15:wcscasecmp:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.32:1999/07/25:wcscat:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.32:1999/07/25:wcschr:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.32:1999/07/25:wcscmp:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.32:1999/07/25:wcscpy:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.32:1999/07/25:wcscspn:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.32:2010/09/15:wcsdup:3:2004/06/13::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.32:1999/07/25:wcslen:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.32:2010/09/15:wcsncasecmp:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.32:1999/07/25:wcsncat:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.32:1999/07/25:wcsncmp:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.32:1999/07/25:wcsncpy:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.32:2010/09/15:wcsnlen:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.32:2010/09/15:wcsnrtombs:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.32:1999/07/25:wcspbrk:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.32:1999/07/25:wcsrchr:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.32:1999/07/25:wcsrtombs:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.32:1999/07/25:wcsspn:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.32:1999/07/25:wcsstr:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.32:2003/11/01:wcstoimax:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.32:1999/07/25:wcstok:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.32:1999/07/25:wcstombs:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +ï¼ :LDP man-pages:3.32:2003/11/01:wcstoumax:3:wcstoimax:3: +○:LDP man-pages:3.32:2010/09/10:wcswidth:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.32:2009/02/04:wctob:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.32:1999/07/25:wctomb:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +○:LDP man-pages:3.32:1999/07/25:wctrans:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.32:1999/07/25:wctype:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.32:1999/07/25:wcwidth:3:2002/08/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:1999/07/25:wmemchr:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.32:1999/07/25:wmemcmp:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.32:1999/07/25:wmemcpy:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.32:1999/07/25:wmemmove:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +ï¼ :LDP man-pages:3.32:2008/08/12:wmempcpy:3:mempcpy:3: +○:LDP man-pages:3.32:1999/07/25:wmemset:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.32:2008/07/14:wordexp:3:2004/09/29::ysato444@yahoo.co.jp:Yuichi SATO: +ï¼ :LDP man-pages:3.32:2008/07/14:wordfree:3:wordexp:3: +○:LDP man-pages:3.32:2010/09/20:wprintf:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +○:LDP man-pages:3.32:2003/04/04:xcrypt:3:2004/10/16::ysato444@yahoo.co.jp:Yuichi SATO: +ï¼ :LDP man-pages:3.32:2003/04/04:xdecrypt:3:xcrypt:3: +○:LDP man-pages:3.32:2007/12/30:xdr:3:2000/01/14::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +ï¼ :LDP man-pages:3.32:2008/07/17:xdr_accepted_reply:3:rpc:3: +ï¼ :LDP man-pages:3.32:2007/12/30:xdr_array:3:xdr:3: +ï¼ :LDP man-pages:3.32:2008/07/17:xdr_authunix_parms:3:rpc:3: +ï¼ :LDP man-pages:3.32:2007/12/30:xdr_bool:3:xdr:3: +ï¼ :LDP man-pages:3.32:2007/12/30:xdr_bytes:3:xdr:3: +ï¼ :LDP man-pages:3.32:2008/07/17:xdr_callhdr:3:rpc:3: +ï¼ :LDP man-pages:3.32:2008/07/17:xdr_callmsg:3:rpc:3: +ï¼ :LDP man-pages:3.32:2007/12/30:xdr_char:3:xdr:3: +ï¼ :LDP man-pages:3.32:2007/12/30:xdr_destroy:3:xdr:3: +ï¼ :LDP man-pages:3.32:2007/12/30:xdr_double:3:xdr:3: +ï¼ :LDP man-pages:3.32:2007/12/30:xdr_enum:3:xdr:3: +ï¼ :LDP man-pages:3.32:2007/12/30:xdr_float:3:xdr:3: +ï¼ :LDP man-pages:3.32:2007/12/30:xdr_free:3:xdr:3: +ï¼ :LDP man-pages:3.32:2007/12/30:xdr_getpos:3:xdr:3: +ï¼ :LDP man-pages:3.32:2007/12/30:xdr_inline:3:xdr:3: +ï¼ :LDP man-pages:3.32:2007/12/30:xdr_int:3:xdr:3: +ï¼ :LDP man-pages:3.32:2007/12/30:xdr_long:3:xdr:3: +ï¼ :LDP man-pages:3.32:2007/12/30:xdr_opaque:3:xdr:3: +ï¼ :LDP man-pages:3.32:2008/07/17:xdr_opaque_auth:3:rpc:3: +ï¼ :LDP man-pages:3.32:2008/07/17:xdr_pmap:3:rpc:3: +ï¼ :LDP man-pages:3.32:2008/07/17:xdr_pmaplist:3:rpc:3: +ï¼ :LDP man-pages:3.32:2007/12/30:xdr_pointer:3:xdr:3: +ï¼ :LDP man-pages:3.32:2007/12/30:xdr_reference:3:xdr:3: +ï¼ :LDP man-pages:3.32:2008/07/17:xdr_rejected_reply:3:rpc:3: +ï¼ :LDP man-pages:3.32:2008/07/17:xdr_replymsg:3:rpc:3: +ï¼ :LDP man-pages:3.32:2007/12/30:xdr_setpos:3:xdr:3: +ï¼ :LDP man-pages:3.32:2007/12/30:xdr_short:3:xdr:3: +ï¼ :LDP man-pages:3.32:2007/12/30:xdr_string:3:xdr:3: +ï¼ :LDP man-pages:3.32:2007/12/30:xdr_u_char:3:xdr:3: +ï¼ :LDP man-pages:3.32:2007/12/30:xdr_u_int:3:xdr:3: +ï¼ :LDP man-pages:3.32:2007/12/30:xdr_u_long:3:xdr:3: +ï¼ :LDP man-pages:3.32:2007/12/30:xdr_u_short:3:xdr:3: +ï¼ :LDP man-pages:3.32:2007/12/30:xdr_union:3:xdr:3: +ï¼ :LDP man-pages:3.32:2007/12/30:xdr_vector:3:xdr:3: +ï¼ :LDP man-pages:3.32:2007/12/30:xdr_void:3:xdr:3: +ï¼ :LDP man-pages:3.32:2007/12/30:xdr_wrapstring:3:xdr:3: +ï¼ :LDP man-pages:3.32:2007/12/30:xdrmem_create:3:xdr:3: +ï¼ :LDP man-pages:3.32:2007/12/30:xdrrec_create:3:xdr:3: +ï¼ :LDP man-pages:3.32:2007/12/30:xdrrec_endofrecord:3:xdr:3: +ï¼ :LDP man-pages:3.32:2007/12/30:xdrrec_eof:3:xdr:3: +ï¼ :LDP man-pages:3.32:2007/12/30:xdrrec_skiprecord:3:xdr:3: +ï¼ :LDP man-pages:3.32:2007/12/30:xdrstdio_create:3:xdr:3: +ï¼ :LDP man-pages:3.32:2003/04/04:xencrypt:3:xcrypt:3: +ï¼ :LDP man-pages:3.32:2008/07/17:xprt_register:3:rpc:3: +ï¼ :LDP man-pages:3.32:2008/07/17:xprt_unregister:3:rpc:3: +○:LDP man-pages:3.32:2008/08/10:y0:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2008/08/10:y0f:3:y0:3: +ï¼ :LDP man-pages:3.32:2008/08/10:y0l:3:y0:3: +ï¼ :LDP man-pages:3.32:2008/08/10:y1:3:y0:3: +ï¼ :LDP man-pages:3.32:2008/08/10:y1f:3:y0:3: +ï¼ :LDP man-pages:3.32:2008/08/10:y1l:3:y0:3: +ï¼ :LDP man-pages:3.32:2008/08/10:yn:3:y0:3: +ï¼ :LDP man-pages:3.32:2008/08/10:ynf:3:y0:3: +ï¼ :LDP man-pages:3.32:2008/08/10:ynl:3:y0:3: +○:LDP man-pages:3.32:1994/10/31:console:4:2002/01/14:o:argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.32:2008/01/01:console_codes:4:2008/10/08::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.32:2009/02/28:console_ioctl:4:2008/07/22::argrath@ub32.org:Kentaro Shirakata: +×:LDP man-pages:3.32:2009/03/31:cpuid:4::::: +○:LDP man-pages:3.32:2000/03/01:dsp56k:4:2000/07/11::sato@complex.eng.hokudai.ac.jp:Yuichi SATO: +ï¼ :LDP man-pages:3.32:2009/02/01:epoll:4:epoll:7: +○:LDP man-pages:3.32:2010/08/29:fd:4:1998/01/12:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi: +ï¼ :LDP man-pages:3.32:2008/12/03:fifo:4:fifo:7: +○:LDP man-pages:3.32:1997/08/02:full:4:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2002/12/31:futex:4:futex:7: +○:LDP man-pages:3.32:1992/12/17:hd:4:1998/02/05:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi: +○:LDP man-pages:3.32:2010/09/04:initrd:4:2005/10/09:o:amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2007/10/23:intro:4:1998/02/05:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi: +ï¼ :LDP man-pages:3.32:1992/11/21:kmem:4:mem:4: +○:LDP man-pages:3.32:1995/01/15:lp:4:1998/02/05:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi: +○:LDP man-pages:3.32:1992/11/21:mem:4:1998/02/05:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi: +○:LDP man-pages:3.32:1996/02/10:mouse:4:1999/03/24:o:ss236rx@ymg.urban.ne.jp:Shouichi Saito: +×:LDP man-pages:3.32:2009/03/31:msr:4::::: +○:LDP man-pages:3.32:2009/02/23:null:4:1998/02/05:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi: +ï¼ :LDP man-pages:3.32:1992/11/21:port:4:mem:4: +ï¼ :LDP man-pages:3.32:2002/10/09:ptmx:4:pts:4: +○:LDP man-pages:3.32:2002/10/09:pts:4:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:1992/11/21:ram:4:1997/01/12:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi: +○:LDP man-pages:3.32:2010/08/29:random:4:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2010/02/25:rtc:4:2007/02/08::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.32:1992/12/17:sd:4:1998/02/05::ishikawa@linux.or.jp:ISHIKAWA Mutsumi: +○:LDP man-pages:3.32:2007/11/25:sk98lin:4:2007/06/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2010/09/04:st:4:2005/06/12::nakano@st.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.32:2003/04/07:tty:4:2003/09/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:1992/12/19:ttyS:4:1998/02/05::ishikawa@linux.or.jp:ISHIKAWA Mutsumi: +○:LDP man-pages:3.32:2008/10/29:tty_ioctl:4:2004/11/16::ysato444@yahoo.co.jp:Yuichi SATO: +ï¼ :LDP man-pages:3.32:2010/08/29:urandom:4:random:4: +○:LDP man-pages:3.32:2007/12/17:vcs:4:2001/02/11::sato@complex.eng.hokudai.ac.jp:Yuichi SATO: +ï¼ :LDP man-pages:3.32:2007/12/17:vcsa:4:vcs:4: +○:LDP man-pages:3.32:1996/10/22:wavelan:4:1998/02/10::ishikawa@linux.or.jp:ISHIKAWA Mutsumi: +ï¼ :LDP man-pages:3.32:2009/02/23:zero:4:null:4: +○:LDP man-pages:3.32:2008/06/15:acct:5:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:1994/11/28:charmap:5:2008/07/22::argrath@ub32.org:Kentaro Shirakata: +ï¼ :LDP man-pages:3.32:2009/07/25:complex:5:complex:7: +☆:LDP man-pages:3.31=>3.32:2010/11/15:core:5:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2001/12/26:dir_colors:5:2002/01/14::ysato@h4.dion.ne.jp:Yuichi SATO: +☆:LDP man-pages:3.24=>3.32:2010/06/19:elf:5:2005/11/03::ysato444@yahoo.co.jp:Yuichi SATO: +ï¼ :LDP man-pages:3.32:2009/07/25:environ:5:environ:7: +☆:LDP man-pages:3.24=>3.32:2010/05/24:filesystems:5:2008/02/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2010/05/24:fs:5:filesystems:5: +○:LDP man-pages:3.32:2000/08/27:ftpusers:5:2001/03/12::nakano@apm.seikei.ac.jp:NAKANO Takeo: +☆:LDP man-pages:3.29=>3.32:2010/10/21:group:5:2005/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2003/08/23:host.conf:5:2003/10/15::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.32:2002/06/16:hosts:5:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2003/08/24:hosts.equiv:5:2005/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2007/10/23:intro:5:1998/10/13::nakano@apm.seikei.ac.jp:NAKANO Takeo: +ï¼ :LDP man-pages:3.32:2009/01/26:ipc:5:svipc:7: +○:LDP man-pages:3.32:1993/07/24:issue:5:1998/07/25::nakano@apm.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.32:2008/06/17:locale:5:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:1992/12/29:motd:5:1998/2/4::nagoya@cc.hit-u.ac.jp:Hiroaki Nagoya: +×:LDP man-pages:3.32:2008/09/04:networks:5::::: +○:LDP man-pages:3.32:1992/12/29:nologin:5:1998/02/18::rui@linux.or.jp:Ueyama Rui: +○:LDP man-pages:3.32:1999/10/01:nscd.conf:5:2006/07/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:1999/01/17:nsswitch.conf:5:2001/10/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +※:LDP man-pages:3.32:2008/08/15:numa_maps:5:numa:7: +☆:LDP man-pages:3.29=>3.32:2010/10/21:passwd:5:2006/07/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.24=>3.32:2010/10/30:proc:5:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2008/09/23:protocols:5:2008/07/22::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.32:2009/03/01:resolv.conf:5:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2009/03/01:resolver:5:resolv.conf:5: +○:LDP man-pages:3.32:1985/09/26:rpc:5:2008/07/22::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.32:1992/12/29:securetty:5:2003/01/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2010/05/22:services:5:2002/08/14::amotoki@dd.iij4u.or.jp:Akihiro Motoki: +○:LDP man-pages:3.32:1993/11/21:shells:5:2000/12/11::nakano@apm.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.32:2001/06/19:slabinfo:5:2001/09/10::nakano@apm.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.32:1996/10/21:termcap:5:2000/10/12::nakano@apm.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.32:1993/07/24:ttytype:5:1998/02/10::nakano@apm.seikei.ac.jp:NAKANO Takeo: +☆:LDP man-pages:3.25=>3.32:2010/08/31:tzfile:5:1999/09/14::nakano@apm.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.32:2008/10/10:utmp:5:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2008/10/10:utmpx:5:utmp:5: +ï¼ :LDP man-pages:3.32:2008/10/10:wtmp:5:utmp:5: +○:LDP man-pages:3.32:2007/10/23:intro:6:1997/11/15::pessi@kmc.kyoto-u.ac.jp:II Ryouta: +×:LDP man-pages:3.32:2010/10/02:aio:7::::: +×:LDP man-pages:3.32:2010/09/20:armscii-8:7::::: +○:LDP man-pages:3.32:2008/11/25:arp:7:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2009/02/12:ascii:7:2006/04/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2010/09/19:boot:7:2005/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2007/12/16:bootparam:7:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2010/06/19:capabilities:7:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2008/06/03:charsets:7:2008/07/22::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.32:2009/07/25:complex:7:2006/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +×:LDP man-pages:3.32:2010/09/20:cp1251:7::::: +×:LDP man-pages:3.32:2008/11/12:cpuset:7::::: +○:LDP man-pages:3.32:2008/06/03:credentials:7:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2008/11/20:ddp:7:1999/12/06::nakano@apm.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.32:2009/07/25:environ:7:2006/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2009/02/01:epoll:7:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2010/09/10:feature_test_macros:7:2007/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2008/12/03:fifo:7:2006/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2002/12/31:futex:7:2006/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +※:LDP man-pages:3.32:2009/01/13:glibc:7:libc:7: +○:LDP man-pages:3.32:2003/08/24:glob:7:2003/09/28::nakano@apm.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.32:2009/03/30:hier:7:2002/01/14::nakano@apm.seikei.ac.jp:NAKANO Takeo: +×:LDP man-pages:3.32:2010/11/07:hostname:7::::: +○:LDP man-pages:3.32:2010/02/25:icmp:7:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.25=>3.32:2010/11/12:inotify:7:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:1993/04/23:intro:7:2005/12/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.25=>3.32:2010/10/24:ip:7:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2009/02/28:ipv6:7:2006/01/14::ysato444@yahoo.co.jp:Yuichi SATO: +ï¼ :LDP man-pages:3.32:1999/05/31:iso-8859-1:7:iso_8859-1:7: +※:LDP man-pages:3.32:2010/09/20:iso-8859-10:7:iso_8859-10:7: +※:LDP man-pages:3.32:2010/09/20:iso-8859-11:7:iso_8859-11:7: +※:LDP man-pages:3.32:2010/09/20:iso-8859-13:7:iso_8859-13:7: +※:LDP man-pages:3.32:2010/09/20:iso-8859-14:7:iso_8859-14:7: +ï¼ :LDP man-pages:3.32:1999/05/31:iso-8859-15:7:iso_8859-15:7: +ï¼ :LDP man-pages:3.32:2003/03/05:iso-8859-16:7:iso_8859-16:7: +ï¼ :LDP man-pages:3.32:2007/11/25:iso-8859-2:7:iso_8859-2:7: +※:LDP man-pages:3.32:2010/09/20:iso-8859-3:7:iso_8859-3:7: +※:LDP man-pages:3.32:2009/01/24:iso-8859-4:7:iso_8859-4:7: +※:LDP man-pages:3.32:2010/09/20:iso-8859-5:7:iso_8859-5:7: +※:LDP man-pages:3.32:2010/09/20:iso-8859-6:7:iso_8859-6:7: +ï¼ :LDP man-pages:3.32:2008/10/30:iso-8859-7:7:iso_8859-7:7: +※:LDP man-pages:3.32:2010/09/20:iso-8859-8:7:iso_8859-8:7: +ï¼ :LDP man-pages:3.32:2002/09/24:iso-8859-9:7:iso_8859-9:7: +○:LDP man-pages:3.32:1999/05/31:iso_8859-1:7:2002/09/14::argrath@ub32.org:Kentaro Shirakata: +×:LDP man-pages:3.32:2010/09/20:iso_8859-10:7::::: +×:LDP man-pages:3.32:2010/09/20:iso_8859-11:7::::: +×:LDP man-pages:3.32:2010/09/20:iso_8859-13:7::::: +×:LDP man-pages:3.32:2010/09/20:iso_8859-14:7::::: +○:LDP man-pages:3.32:1999/05/31:iso_8859-15:7:2002/09/28::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +○:LDP man-pages:3.32:2003/03/05:iso_8859-16:7:2003/09/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2007/11/25:iso_8859-2:7:2002/09/28::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +×:LDP man-pages:3.32:2010/09/20:iso_8859-3:7::::: +×:LDP man-pages:3.32:2009/01/24:iso_8859-4:7::::: +×:LDP man-pages:3.32:2010/09/20:iso_8859-5:7::::: +×:LDP man-pages:3.32:2010/09/20:iso_8859-6:7::::: +○:LDP man-pages:3.32:2008/10/30:iso_8859-7:7:2002/09/28::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +×:LDP man-pages:3.32:2010/09/20:iso_8859-8:7::::: +○:LDP man-pages:3.32:2002/09/24:iso_8859-9:7:2003/01/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:1999/05/31:iso_8859_1:7:iso_8859-1:7: +※:LDP man-pages:3.32:2010/09/20:iso_8859_10:7:iso_8859-10:7: +※:LDP man-pages:3.32:2010/09/20:iso_8859_11:7:iso_8859-11:7: +※:LDP man-pages:3.32:2010/09/20:iso_8859_13:7:iso_8859-13:7: +※:LDP man-pages:3.32:2010/09/20:iso_8859_14:7:iso_8859-14:7: +ï¼ :LDP man-pages:3.32:1999/05/31:iso_8859_15:7:iso_8859-15:7: +ï¼ :LDP man-pages:3.32:2003/03/05:iso_8859_16:7:iso_8859-16:7: +ï¼ :LDP man-pages:3.32:2007/11/25:iso_8859_2:7:iso_8859-2:7: +※:LDP man-pages:3.32:2010/09/20:iso_8859_3:7:iso_8859-3:7: +※:LDP man-pages:3.32:2009/01/24:iso_8859_4:7:iso_8859-4:7: +※:LDP man-pages:3.32:2010/09/20:iso_8859_5:7:iso_8859-5:7: +※:LDP man-pages:3.32:2010/09/20:iso_8859_6:7:iso_8859-6:7: +ï¼ :LDP man-pages:3.32:2008/10/30:iso_8859_7:7:iso_8859-7:7: +※:LDP man-pages:3.32:2010/09/20:iso_8859_8:7:iso_8859-8:7: +ï¼ :LDP man-pages:3.32:2002/09/24:iso_8859_9:7:iso_8859-9:7: +○:LDP man-pages:3.32:2010/10/24:koi8-r:7:2001/07/14::ysato@h4.dion.ne.jp:Yuichi SATO: +×:LDP man-pages:3.32:2010/09/20:koi8-u:7::::: +ï¼ :LDP man-pages:3.32:1999/05/31:latin1:7:iso_8859-1:7: +ï¼ :LDP man-pages:3.32:2003/03/05:latin10:7:iso_8859-16:7: +ï¼ :LDP man-pages:3.32:2007/11/25:latin2:7:iso_8859-2:7: +※:LDP man-pages:3.32:2010/09/20:latin3:7:iso_8859-3:7: +※:LDP man-pages:3.32:2009/01/24:latin4:7:iso_8859-4:7: +ï¼ :LDP man-pages:3.32:2002/09/24:latin5:7:iso_8859-9:7: +※:LDP man-pages:3.32:2010/09/20:latin6:7:iso_8859-10:7: +※:LDP man-pages:3.32:2010/09/20:latin7:7:iso_8859-13:7: +※:LDP man-pages:3.32:2010/09/20:latin8:7:iso_8859-14:7: +ï¼ :LDP man-pages:3.32:1999/05/31:latin9:7:iso_8859-15:7: +×:LDP man-pages:3.32:2009/01/13:libc:7::::: +○:LDP man-pages:3.32:2008/12/05:locale:7:2006/02/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2004/09/15:mailaddr:7:2005/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2007/05/30:man:7:2007/06/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2008/10/28:man-pages:7:2008/02/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2008/08/11:math_error:7:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:0000/00/00:mdoc:7:2008/10/08::argrath@ub32.org:Kentaro Shirakata: +ï¼£:LDP man-pages:3.32: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.32:2009/09/27:mq_overview:7:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2009/01/14:netdevice:7:2009/03/05::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.32:2008/11/11:netlink:7:2006/07/12::ysato444@yahoo.co.jp:Yuichi SATO: +×:LDP man-pages:3.32:2008/08/15:numa:7::::: +○:LDP man-pages:3.32:2004/08/24:operator:7:2004/11/16::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.32:2008/08/08:packet:7:2005/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2009/12/05:path_resolution:7:2007/06/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2005/12/08:pipe:7:2005/12/27::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2007/12/21:posixoptions:7:2005/01/14::ysato444@yahoo.co.jp:Yuichi SATO: +☆:LDP man-pages:3.31=>3.32:2010/11/14:pthreads:7:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2005/10/10:pty:7:2005/10/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2008/11/20:raw:7:2007/01/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2009/01/12:regex:7:1998/07/08::nakano@apm.seikei.ac.jp:NAKANO Takeo: +×:LDP man-pages:3.32:2010/09/10:rtld-audit:7::::: +○:LDP man-pages:3.32:2008/08/08:rtnetlink:7:2001/03/11::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.32:2010/05/22:sem_overview:7:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2010/09/10:shm_overview:7:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +×:LDP man-pages:3.32:2010/10/04:sigevent:7::::: +☆:LDP man-pages:3.31=>3.32:2010/09/19:signal:7:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.24=>3.32:2010/06/13:socket:7:2007/01/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:2.67=>3.32:2007/12/20:spufs:7:2007/10/23::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2009/06/01:standards:7:2006/08/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2000/11/16:suffixes:7:2001/04/24::ysato@h4.dion.ne.jp:Yuichi SATO: +○:LDP man-pages:3.32:2009/01/26:svipc:7:2006/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +×:LDP man-pages:3.32:2008/06/18:symlink:7::::: +☆:LDP man-pages:3.25=>3.32:2010/09/10:tcp:7:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2006/12/28:termio:7:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2010/02/25:time:7:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +※:LDP man-pages:3.32:2010/09/20:tis-620:7:iso_8859-11:7: +☆:LDP man-pages:3.24=>3.32:2010/06/13:udp:7:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2008/12/03:udplite:7:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2001/05/11:unicode:7:2001/07/14::ysato@h4.dion.ne.jp:Yuichi SATO: +○:LDP man-pages:3.32:2001/12/22:units:7:2002/01/14::nakano@apm.seikei.ac.jp:NAKANO Takeo: +☆:LDP man-pages:3.25=>3.32:2010/11/15:unix:7:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32:2000/03/14:uri:7:2008/07/22::argrath@ub32.org:Kentaro Shirakata: +ï¼ :LDP man-pages:3.32:2000/03/14:url:7:uri:7: +ï¼ :LDP man-pages:3.32:2000/03/14:urn:7:uri:7: +○:LDP man-pages:3.32:2001/05/11:utf-8:7:2001/07/14::ysato@h4.dion.ne.jp:Yuichi SATO: +ï¼ :LDP man-pages:3.32:2001/05/11:utf8:7:utf-8:7: +○:LDP man-pages:3.32:2008/08/08:x25:7:1999/12/06::nakano@apm.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.32:2007/10/23:intro:8:2008/02/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +ï¼ :LDP man-pages:3.32:2009/01/12:ld-linux:8:ld.so:8: +ï¼ :LDP man-pages:3.32:2009/01/12:ld-linux.so:8:ld.so:8: +○:LDP man-pages:3.32:2009/01/12:ld.so:8:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.32: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.32:2008/12/05:nscd:8:2009/03/14::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.32:1998/11/01:sync:8:2000/06/13::sato@complex.eng.hokudai.ac.jp:Yuichi SATO: +○:LDP man-pages:3.32:2007/05/18:tzselect:8:2002/01/14::ysato@h4.dion.ne.jp:Yuichi SATO: +○:LDP man-pages:3.32:0000/00/00:zdump:8:1999/09/14::nakano@apm.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.32:2010/02/25:zic:8:2001/04/04::sato@complex.eng.hokudai.ac.jp:Yuichi SATO: