man-pages/man3
Michael Kerrisk a0ddea8773 Add Linux-specific errors, and mark individual errors as being present
in POSIX or C99

Hello Kurt,

Thanks for your message.

> man3/errno.3 was missing some errors. 

Indeed.

> This patch updates errno.3 based
> on /usr/include/linux/errno.h as of 2.6.16-rc2. 

I do not quite understand that last: /usr/include/linux/errno.h is a 
userland file -- it probably won't tie up too well to a 
specific kernel version (or am I missing something?).

> I also synced the error
> description in the man page with the error descriptions from the header
> file.

This generates some useful info, but also some things that are incorrect.
For example, since you are talking about a glibc header, does a 
particular error even occur on Linux.  (See some examples below.)

I think you also overlooked the fact that the page says that the listed 
errors are defined by POSIX.1-2001.  So it is not sufficient to just 
add new errors to the list.  On the other hand, it is irritating
that the current page does not list Linux-specific errors.
And you patch has finally pushed me to do something I've been 
thinking of for a while.  So I've changed the page to mark the 
errors that are POSIX, and added the Linux-specifc errors, 
integrating some of your patch.

> The patch was diffed against manpages-2.22.

Thanks -- many people forget to mention that detail.

> --- errno.3.orig    2005-12-14 07:09:39.000000000 -0500
> +++ errno.3    2006-02-06 23:45:52.000000000 -0500
> @@ -23,9 +23,11 @@
>  .\" 5 Oct 2002, Modified by Michael Kerrisk <mtk-manpages@gmx.net>
>  .\"     Updated for POSIX 1003.1 2001
>  .\" 2004-12-17 Martin Schulze <joey@infodrom.org>, mtk
> -.\"    Removed errno declaration prototype, added notes
> +.\"        Removed errno declaration prototype, added notes
> +.\" 7 Feb 2006, Modified by Kurt Wall <kwall@kurtwerks.com>
> +.\"     Add missing errors, sync to linux-2.6.16-rc2
>  .\"
> -.TH ERRNO 3 2004-12-17 "" "Library functions"
> +.TH ERRNO 3 2006-02-07 "" "Library functions"
>  .SH NAME
>  errno \- number of last error
>  .SH SYNOPSIS
> @@ -71,61 +73,95 @@
>  .\" FIXME The following list is far from complete
>  .TP
>  .B E2BIG
> -Arg list too long
> +Argument list too long

ok

>  .TP
>  .B EACCES
>  Permission denied
>  .TP
>  .B EADDRINUSE
> -Address in use
> +Address already in use

ok

>  .TP
>  .B EADDRNOTAVAIL
> -Address not available
> +Cannot assign requested address

ok

> +.TP
> +.B EADV
> +Advertise error

This is a HURD error.  As far as I can tell it does not occur on Linux.

>  .TP
>  .B EAFNOSUPPORT
> -Address family not supported
> +Address family not supported by protocol

POSIX differs.  I stayed with POSIX.

>  .TP
>  .B EAGAIN
> -Resource temporarily unavailable
> +Try again

This is wrong.  (i.e., it does not match POSIX and/or 
what perror(3) produces)

>  .TP
>  .B EALREADY
> -Connection already in progress
> +Operation already in progress

POSIX differs.  I stayed with POSIX.

> +.TP
> +.B EBADE
> +Invalid exchange

ok

>  .TP
>  .B EBADF
> -Bad file descriptor
> +Bad file number

This is wrong.

> +.TP
> +.B EBADFD
> +File descriptor in bad state

ok

>  .TP
>  .B EBADMSG
> -Bad message
> +Not a data message

This is wrong.

> +.TP
> +.B EBADR
> +Invalid request descriptor

ok

> +.TP
> +.B EBADRQC
> +Invalid request code

ok

> +.TP
> +.B EBADSLT
> +Invalid slot

ok

> +.TP
> +.B EBFONT
> +Bad font file format

As far as I can tell, this is not used on Linux.  Let me know 
if you find otherwise. (I didn't add it)

>  .TP
>  .B EBUSY
> -Resource busy
> +Device or resource busy

ok

>  .TP
>  .B ECANCELED
> -Operation canceled
> +Operation Canceled

Please review the output of automated scripts!
(not changed)

>  .TP
>  .B ECHILD
>  No child processes
>  .TP
> +.B ECHRNG
> +Channel number out of range

ok

> +.TP
> +.B ECOMM
> +Communication error on send

ok

> +.TP
>  .B ECONNABORTED
> -Connection aborted
> +Software caused connection abort

POSIX differs.  I stayed with POSIX.

>  .TP
>  .B ECONNREFUSED
>  Connection refused
>  .TP
>  .B ECONNRESET
> -Connection reset
> +Connection reset by peer

POSIX differs.  I stayed with POSIX.

>  .TP
>  .B EDEADLK
> -Resource deadlock avoided
> +Resource deadlock would occur

POSIX differs.  I stayed with POSIX.

> +.TP
> +.B EDEADLOCK
> +Resource deadlock would occur (might be the same value as
> +.BR EDEADLK)

I wrote just "Synonym for EDEADLK"

>  .TP
>  .B EDESTADDRREQ
>  Destination address required
>  .TP
>  .B EDOM
> -Domain error
> +Math argument out of domain of func

? Garbled

I wrote the POSIX defn: Mathematics argument out of domain of function

> +.TP
> +.B EDOTDOT
> +RFS specific error

This is defined, but appears not to be used.
(I didn't add it)

>  .TP
>  .B EDQUOT
> -Reserved
> +Quota exceeded

POSIX says "Reserved."  In this case better to go with
"Disk quota exceeded"

>  .TP
>  .B EEXIST
>  File exists
> @@ -136,8 +172,11 @@
>  .B EFBIG
>  File too large
>  .TP
> +.B EHOSTDOWN
> +Host is down

ok

> +.TP
>  .B EHOSTUNREACH
> -Host is unreachable
> +No route to host

POSIX differs.  I stayed with POSIX.

>  .TP
>  .B EIDRM
>  Identifier removed
> @@ -146,25 +185,70 @@
>  Illegal byte sequence
>  .TP
>  .B EINPROGRESS
> -Operation in progress
> +Operation now in progress

POSIX differs.  I stayed with POSIX.

>  .TP
>  .B EINTR
> -Interrupted function call
> +Interrupted system call

POSIX differs.  I stayed with POSIX.

>  .TP
>  .B EINVAL
>  Invalid argument
>  .TP
>  .B EIO
> -Input/output error
> +I/O error

POSIX differs.  I stayed with POSIX.

>  .TP
>  .B EISCONN
> -Socket is connected
> +Transport endpoint is already connected

POSIX differs.  I stayed with POSIX.

>  .TP
>  .B EISDIR
>  Is a directory
>  .TP
> +.B EISNAM
> +Is a named type file

ok

> +.TP
> +.B EKEYEXPIRED
> +Key has expired

ok

> +.TP
> +.B EKEYREJECTED
> +Key was rejected by service

ok

> +.TP
> +.B EKEYREVOKED
> +Key has been revoked

ok

> +.TP
> +.B EL2HLT
> +Level 2 halted

ok

> +.TP
> +.B EL2NSYNC
> +Level 2 not synchronized

ok

> +.TP
> +.B EL3HLT
> +Level 3 halted

ok

> +.TP
> +.B EL3RST
> +Level 3 reset

ok

> +.TP
> +.B ELIBACC
> +Can not access a needed shared library

ok

> +.TP
> +.B ELIBBAD
> +Accessing a corrupted shared library

ok

> +.TP
> +.B ELIBEXEC
> +Cannot exec a shared library directly

ok

> +.TP
> +.B ELIBMAX
> +Attempting to link in too many shared libraries

ok

> +.TP
> +.B ELIBSCN
> +.lib section in a.out corrupted

ok

> +.TP
> +.B ELNRNG
> +Link number out of range

This is defined, but appears not to be used.
(I didn't add it)

> +.TP
>  .B ELOOP
> -Too many levels of symbolic links
> +Too many symbolic links encountered

this is wrong

> +.TP
> +.B EMEDIUMTYPE
> +Wrong medium type
>  .TP
>  .B EMFILE
>  Too many open files
> @@ -173,32 +257,41 @@
>  Too many links
>  .TP
>  .B EMSGSIZE
> -Inappropriate message buffer length
> +Message too long

ok

>  .TP
>  .B EMULTIHOP
> -Reserved
> +Multihop attempted

ok
POSIX says "Reserved."  In this case better to go with
Linux.

>  .TP
>  .B ENAMETOOLONG
> -Filename too long
> +File name too long

Scripted output?
(no change)

> +.TP
> +.B ENAVAIL
> +No XENIX semaphores available

This is defined, but appears not to be used.
(I didn't add it)

>  .TP
>  .B ENETDOWN
>  Network is down
>  .TP
>  .B ENETRESET
> -Connection aborted by network
> +Network dropped connection because of reset

POSIX differs.  I stayed with POSIX.

>  .TP
>  .B ENETUNREACH
> -Network unreachable
> +Network is unreachable

POSIX differs.  I stayed with POSIX.

>  .TP
>  .B ENFILE
> -Too many open files in system
> +File table overflow

This is wrong

> +.TP
> +.B ENOANO
> +No anode

This is defined, but appears not to be used.
(I didn't add it)

>  .TP
>  .B ENOBUFS
>  No buffer space available
> +.TP
> +.B ENOCSI
> +No CSI structure available

This is defined, but appears not to be used.
(I didn't add it)

>  .\" ENODATA is part of XSR option
>  .TP
>  .B ENODATA
> -No message is available on the STREAM head read queue
> +No data available

POSIX differs.  I stayed with POSIX.

>  .TP
>  .B ENODEV
>  No such device
> @@ -209,17 +302,29 @@
>  .B ENOEXEC
>  Exec format error
>  .TP
> +.B ENOKEY
> +Required key not available

ok

> +.TP
>  .B ENOLCK
> -No locks available
> +No record locks available

This is wrong

>  .TP
>  .B ENOLINK
> -Reserved
> +Link has been severed

ok
POSIX says "Reserved."  In this case better to go with
Linux.

> +.TP
> +.B ENOMEDIUM
> +No medium found

ok

>  .TP
>  .B ENOMEM
> -Not enough space
> +Out of memory

POSIX differs.  I stayed with POSIX.

>  .TP
>  .B ENOMSG
> -No message of the desired type
> +No message of desired type

POSIX differs.  I stayed with POSIX.

> +.TP
> +.B ENONET
> +Machine is not on the network

ok

> +.TP
> +.B ENOPKG
> +Package not installed

ok

>  .TP
>  .B ENOPROTOOPT
>  Protocol not available
> @@ -229,17 +334,20 @@
>  .\" ENOSR is part of XSR option
>  .TP
>  .B ENOSR
> -No STREAM resources
> +Out of streams resources

POSIX differs.  I stayed with POSIX.

>  .\" ENOSTR is part of XSR option
>  .TP
>  .B ENOSTR
> -Not a STREAM
> +Device not a stream

POSIX differs.  I stayed with POSIX.

>  .TP
>  .B ENOSYS
>  Function not implemented
>  .TP
> +.B ENOTBLK
> +Block device required
> +.TP

ok

>  .B ENOTCONN
> -The socket is not connected
> +Transport endpoint is not connected

POSIX differs.  I stayed with POSIX.

>  .TP
>  .B ENOTDIR
>  Not a directory
> @@ -247,27 +355,33 @@
>  .B ENOTEMPTY
>  Directory not empty
>  .TP
> -.B ENOTSOCK
> -Not a socket
> +.B ENOTNAM
> +Not a XENIX named type file

This is defined, but appears not to be used.
(I didn't add it)

>  .TP
> -.B ENOTSUP
> -Not supported

No!  This exists.


> +.B ENOTSOCK
> +Socket operation on non-socket
>  .TP
>  .B ENOTTY
> -Inappropriate I/O control operation
> +Not a typewriter

this is wrong

> +.TP
> +.B ENOTUNIQ
> +Name not unique on network

ok

>  .TP
>  .B ENXIO
>  No such device or address
>  .TP
>  .B EOPNOTSUPP
> -Operation not supported on socket
> +Operation not supported on transport endpoint

POSIX differs.  I stayed with POSIX.

(In passing ENOTSUP and EOPNOTSUPP have the same value on Linux;
POSIX.1 does not permit this.)

>  .TP
>  .B EOVERFLOW
> -Value too large to be stored in data type
> +Value too large for defined data type

POSIX differs.  I stayed with POSIX.

>  .TP
>  .B EPERM
>  Operation not permitted
>  .TP
> +.B EPFNOSUPPORT
> +Protocol family not supported

ok

> +.TP
>  .B EPIPE
>  Broken pipe
>  .TP
> @@ -281,39 +395,76 @@
>  Protocol wrong type for socket
>  .TP
>  .B ERANGE
> -Result too large
> +Math result not representable

POSIX differs.  I stayed with POSIX.

> +.TP
> +.B EREMCHG
> +Remote address changed

ok

> +.TP
> +.B EREMOTE
> +Object is remote

ok

> +.TP
> +.B EREMOTEIO
> +Remote I/O error

ok

> +.TP
> +.B ERESTART
> +Interrupted system call should be restarted

ok

>  .TP
>  .B EROFS
>  Read-only file system
>  .TP
> +.B ESHUTDOWN
> +Cannot send after transport endpoint shutdown

ok

> +.TP
> +.B ESOCKTNOSUPPORT
> +Socket type not supported

ok

> +.TP
>  .B ESPIPE
> -Invalid seek
> +Illegal seek

POSIX differs.  I stayed with POSIX.

>  .TP
>  .B ESRCH
>  No such process
>  .TP
> +.B ESRMNT
> +Srmount error

This is defined, but appears not to be used.
(I didn't add it)

> +.TP
>  .B ESTALE
> -Stale file handle
> +Stale NFS file handle

Tricky -- you are right about the error message, 
but the message itself is wrong, because the error 
can occur on other file sytems also.
(not changed)

>  .\" Can occur for NFS and for other file systems
>  .\" ETIME is part of XSR option
>  .TP
> +.B ESTRPIPE
> +Streams pipe error

ok

> +.TP
>  .B ETIME
> -STREAM 
> -.BR ioctl () 
> -timeout
> +Timer expired

POSIX differs, but Linux doesn't have streams, and the error is 
used for various purposes.  Changed as you proposed.

>  .TP
>  .B ETIMEDOUT
> -Operation timed out
> +Connection timed out

ok

> +.TP
> +.B ETOOMANYREFS
> +Too many references: cannot splice

This is defined, but appears not to be used.
(I didn't add it)

>  .TP
>  .B ETXTBSY
>  Text file busy
>  .TP
> -.B EWOULDBLOCK
> -Operation would block (may be same value as
> -.BR EAGAIN )

Absolutely not!!

> +.B EUCLEAN
> +Structure needs cleaning

ok

> +.TP
> +.B EUNATCH
> +Protocol driver not attached

ok

> +.TP
> +.B EUSERS
> +Too many users

ok

> +.TP
> +.B EWOULDBLOCK    
> +Operation would block (might be same value as
> +.BR EAGAIN)

okay (except formatting was not quite right: .BR EAGAIN )

>  .TP
>  .B EXDEV
> -Improper link
> +Cross-device link
> +.TP
> +.B EXFULL
> +Exchange full

ok
2006-02-08 18:26:38 +00:00
..
CMSG_ALIGN.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
CMSG_FIRSTHDR.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
CMSG_NXTHDR.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
CMSG_SPACE.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
HUGE_VAL.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
HUGE_VALF.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
HUGE_VALL.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
INFINITY.3 hyphen/dash fixes. 2005-07-06 08:00:30 +00:00
MB_CUR_MAX.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
MB_LEN_MAX.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
NAN.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
__fbufsize.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
__flbf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
__fpending.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
__fpurge.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
__freadable.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
__freading.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
__fsetlocking.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
__fwritable.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
__fwriting.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
__malloc_hook.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
__setfpucw.3 Automated addition of parentheses by add_parens_for_own_funcs.sh 2005-10-19 06:54:38 +00:00
_flushlbf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
a64l.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
abort.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
abs.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
acos.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
acosf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
acosh.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
acoshf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
acoshl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
acosl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
addmntent.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
addseverity.3 Formatting fixes 2005-10-20 15:11:10 +00:00
aio_cancel.3 Automated addition of parentheses by add_parens_for_own_funcs.sh 2005-10-19 06:54:38 +00:00
aio_error.3 Automated addition of parentheses by add_parens_for_own_funcs.sh 2005-10-19 06:54:38 +00:00
aio_fsync.3 Automated addition of parentheses by add_parens_for_own_funcs.sh 2005-10-19 06:54:38 +00:00
aio_read.3 Automated addition of parentheses by add_parens_for_own_funcs.sh 2005-10-19 06:54:38 +00:00
aio_return.3 Automated addition of parentheses by add_parens_for_own_funcs.sh 2005-10-19 06:54:38 +00:00
aio_suspend.3 Automated addition of parentheses by add_parens_for_own_funcs.sh 2005-10-19 06:54:38 +00:00
aio_write.3 Automated addition of parentheses by add_parens_for_own_funcs.sh 2005-10-19 06:54:38 +00:00
alloca.3 Automated addition of parentheses by add_parens_for_own_funcs.sh 2005-10-19 06:54:38 +00:00
alphasort.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
argz_add.3 Global change to many pages... 2006-01-13 02:09:44 +00:00
argz_add_sep.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
argz_append.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
argz_count.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
argz_create.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
argz_create_sep.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
argz_delete.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
argz_extract.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
argz_insert.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
argz_next.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
argz_replace.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
argz_stringify.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
asctime.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
asctime_r.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
asin.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
asinf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
asinh.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
asinhf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
asinhl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
asinl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
asprintf.3 Global change to many pages... 2006-01-13 02:09:44 +00:00
assert.3 Formatting fixes 2005-11-03 12:47:27 +00:00
assert_perror.3 Formatting fixes 2005-11-03 12:47:27 +00:00
atan.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
atan2.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
atan2f.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
atan2l.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
atanf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
atanh.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
atanhf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
atanhl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
atanl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
atexit.3 Formatting fixes 2005-10-20 15:11:10 +00:00
atof.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
atoi.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
atol.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
atoll.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
atoq.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
auth_destroy.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
authnone_create.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
authunix_create.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
authunix_create_default.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
basename.3 Automated addition of parentheses by add_parens_for_own_funcs.sh 2005-10-19 06:54:38 +00:00
bcmp.3 Manual fixes for parentheses formatting 2005-10-19 07:29:28 +00:00
bcopy.3 Manual fixes for parentheses formatting 2005-10-19 07:29:28 +00:00
bindresvport.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
bsearch.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
bstring.3 Global change to many pages... 2006-01-13 02:09:44 +00:00
btowc.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
btree.3 Change things like "NULL-terminated string" to "null-terminated string" 2005-11-02 11:55:24 +00:00
byteorder.3 Change <netinet/in.h> to <arpa/inet.h> in prototype; add text 2005-10-27 09:58:45 +00:00
bzero.3 Global change to many pages... 2006-01-13 02:09:44 +00:00
cabs.3 Formatting fixes 2005-10-19 14:48:35 +00:00
cabsf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
cabsl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
cacos.3 Formatting fixes 2005-10-19 14:48:35 +00:00
cacosf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
cacosh.3 Formatting fixes 2005-10-19 14:48:35 +00:00
cacoshf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
cacoshl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
cacosl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
calloc.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
callrpc.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
canonicalize_file_name.3 Walter's version said too much 2005-07-14 14:55:50 +00:00
carg.3 Delete line that should have been deleted when applying 2005-12-05 09:30:10 +00:00
cargf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
cargl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
casin.3 Formatting fixes 2005-10-19 14:48:35 +00:00
casinf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
casinh.3 Formatting fixes 2005-10-19 14:48:35 +00:00
casinhf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
casinhl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
casinl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
catan.3 Formatting fixes 2005-10-19 14:48:35 +00:00
catanf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
catanh.3 Formatting fixes 2005-10-19 14:48:35 +00:00
catanhf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
catanhl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
catanl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
catclose.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
catgets.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
catopen.3 Change itacised function names and page xrefs to bold 2005-11-02 11:34:24 +00:00
cbc_crypt.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
cbrt.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
cbrtf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
cbrtl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
ccos.3 hyphen/dash fixes 2005-07-06 12:57:38 +00:00
ccosf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
ccosh.3 hyphen/dash fixes 2005-07-06 12:57:38 +00:00
ccoshf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
ccoshl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
ccosl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
ceil.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
ceilf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
ceill.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
cerf.3 Formatting fixes 2005-10-19 14:48:35 +00:00
cerfc.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
cerfcf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
cerfcl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
cerff.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
cerfl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
cexp.3 Compressed synopsis as per Fabian Kreutz's suggestion 2004-11-11 17:28:42 +00:00
cexp2.3 Compressed synopsis as per Fabian Kreutz's suggestion 2004-11-11 17:28:42 +00:00
cexp2f.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
cexp2l.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
cexpf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
cexpl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
cfgetispeed.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
cfgetospeed.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
cfmakeraw.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
cfree.3 Formatting fixes 2005-10-19 14:48:35 +00:00
cfsetispeed.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
cfsetospeed.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
cimag.3 Formatting fixes 2005-10-19 14:48:35 +00:00
cimagf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
cimagl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
clearenv.3 Change itacised function names and page xrefs to bold 2005-11-02 11:34:24 +00:00
clearerr.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
clearerr_unlocked.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
clnt_broadcast.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
clnt_call.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
clnt_control.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
clnt_create.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
clnt_destroy.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
clnt_freeres.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
clnt_geterr.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
clnt_pcreateerror.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
clnt_perrno.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
clnt_perror.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
clnt_spcreateerror.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
clnt_sperrno.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
clnt_sperror.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
clntraw_create.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
clnttcp_create.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
clntudp_bufcreate.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
clntudp_create.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
clock.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
clock_getres.3 Manual fixes for parentheses formatting 2005-10-19 07:29:28 +00:00
clock_gettime.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
clock_settime.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
clog.3 hyphen/dash fixes 2005-07-07 08:27:03 +00:00
clog2.3 Compressed synopsis as per Fabian Kreutz's suggestion 2004-11-11 17:28:42 +00:00
clog2f.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
clog2l.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
clog10.3 Compressed synopsis as per Fabian Kreutz's suggestion 2004-11-11 17:28:42 +00:00
clog10f.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
clog10l.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
clogf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
clogl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
closedir.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
closelog.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
cmsg.3 Formatting fixes 2005-11-02 13:55:25 +00:00
confstr.3 Global change to many pages... 2006-01-13 02:09:44 +00:00
conj.3 Formatting fixes 2005-10-19 14:48:35 +00:00
conjf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
conjl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
copysign.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
copysignf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
copysignl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
cos.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
cosf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
cosh.3 Formatting fixes 2005-10-20 15:11:10 +00:00
coshf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
coshl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
cosl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
cpow.3 Compressed synopsis as per Fabian Kreutz's suggestion 2004-11-11 17:28:42 +00:00
cpowf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
cpowl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
cproj.3 Compressed synopsis as per Fabian Kreutz's suggestion 2004-11-11 17:28:42 +00:00
cprojf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
cprojl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
creal.3 Formatting fixes 2005-10-19 14:48:35 +00:00
crealf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
creall.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
crypt.3 Automated addition of parentheses by add_parens_for_own_funcs.sh 2005-10-19 06:54:38 +00:00
csin.3 hyphen/dash fixes 2005-07-06 12:57:38 +00:00
csinf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
csinh.3 hyphen/dash fixes 2005-07-07 08:27:03 +00:00
csinhf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
csinhl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
csinl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
csqrt.3 hyphen/dash fixes 2005-07-06 12:57:38 +00:00
csqrtf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
csqrtl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
ctan.3 Tony Crawford 2004-12-20 13:43:09 +00:00
ctanf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
ctanh.3 Tony Crawford 2004-12-20 13:43:09 +00:00
ctanhf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
ctanhl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
ctanl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
ctermid.3 Formatting fixes 2005-11-02 13:55:25 +00:00
ctime.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
ctime_r.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
cuserid.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
daemon.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
db.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
dbopen.3 Change itacised function names and page xrefs to bold 2005-11-02 11:34:24 +00:00
des_crypt.3 Manual fixes for parentheses formatting 2005-10-19 07:29:28 +00:00
des_setparity.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
difftime.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
dirfd.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
dirname.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
div.3 Formatting fixes 2005-10-19 14:48:35 +00:00
dl_iterate_phdr.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
dladdr.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
dlclose.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
dlerror.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
dlopen.3 Some rewordings of recently added text 2006-01-15 01:08:56 +00:00
dlsym.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
dlvsym.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
dn_comp.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
dn_expand.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
dprintf.3 Change itacised function names and page xrefs to bold 2005-11-02 11:34:24 +00:00
drand48.3 Formatting fixes 2005-10-19 14:16:57 +00:00
drand48_r.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
drem.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
dremf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
dreml.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
dysize.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
ecb_crypt.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
ecvt.3 Replace "SysV" by "System V" 2006-01-13 09:39:55 +00:00
ecvt_r.3 Change itacised function names and page xrefs to bold 2005-11-02 11:34:24 +00:00
encrypt.3 Formatting fixes 2005-10-19 14:48:35 +00:00
endaliasent.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
endfsent.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
endgrent.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
endhostent.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
endmntent.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
endnetent.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
endnetgrent.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
endprotoent.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
endpwent.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
endrpcent.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
endservent.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
endspent.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
endttyent.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
endusershell.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
endutent.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
endutxent.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
envz_add.3 Formatting fix 2005-10-19 13:17:47 +00:00
envz_entry.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
envz_get.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
envz_merge.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
envz_remove.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
envz_strip.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
erand48.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
erand48_r.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
erf.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
erfc.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
erfcf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
erfcl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
erff.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
erfl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
err.3 Formatting fix 2005-12-19 10:33:47 +00:00
errno.3 Add Linux-specific errors, and mark individual errors as being present 2006-02-08 18:26:38 +00:00
errx.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
ether_aton.3 Change things like "NULL-terminated string" to "null-terminated string" 2005-11-02 11:55:24 +00:00
ether_aton_r.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
ether_hostton.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
ether_line.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
ether_ntoa.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
ether_ntoa_r.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
ether_ntohost.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
exec.3 Formatting fixes 2005-11-02 13:55:25 +00:00
execl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
execle.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
execlp.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
execv.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
execvp.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
exit.3 Add missing word 2005-08-04 14:01:47 +00:00
exp.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
exp2.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
exp2f.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
exp2l.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
exp10.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
exp10f.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
exp10l.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
expf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
expl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
expm1.3 hyphen/dash fixes 2005-07-06 12:57:38 +00:00
expm1f.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
expm1l.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fabs.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
fabsf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fabsl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fclose.3 Automated addition of parentheses by add_parens_for_own_funcs.sh 2005-10-19 06:54:38 +00:00
fcloseall.3 Automated addition of parentheses by add_parens_for_own_funcs.sh 2005-10-19 06:54:38 +00:00
fcvt.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fcvt_r.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fdim.3 Hyphenation/dash fixes 2005-07-06 07:41:37 +00:00
fdimf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fdiml.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fdopen.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
feclearexcept.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fedisableexcept.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
feenableexcept.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fegetenv.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fegetexcept.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fegetexceptflag.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fegetround.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
feholdexcept.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fenv.3 Change itacised function names and page xrefs to bold 2005-11-02 11:34:24 +00:00
feof.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
feof_unlocked.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
feraiseexcept.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
ferror.3 Automated addition of parentheses by add_parens_for_own_funcs.sh 2005-10-19 06:54:38 +00:00
ferror_unlocked.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fesetenv.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fesetexceptflag.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fesetround.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fetestexcept.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
feupdateenv.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fflush.3 Formatting fixes 2005-11-02 13:55:25 +00:00
fflush_unlocked.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
ffs.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
ffsl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
ffsll.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fgetc.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fgetc_unlocked.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fgetgrent.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
fgetgrent_r.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fgetpos.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fgetpwent.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
fgetpwent_r.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fgets.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fgets_unlocked.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fgetspent.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fgetspent_r.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fgetwc.3 Formatting fixes 2005-10-20 15:11:10 +00:00
fgetwc_unlocked.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fgetws.3 Formatting fixes 2005-10-20 15:11:10 +00:00
fgetws_unlocked.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fileno.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fileno_unlocked.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
finite.3 Automated addition of parentheses by add_parens_for_own_funcs.sh 2005-10-19 06:54:38 +00:00
finitef.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
finitel.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
flockfile.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
floor.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
floorf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
floorl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fma.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
fmaf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fmal.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fmax.3 Hyphenation/dash fixes 2005-07-06 07:41:37 +00:00
fmaxf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fmaxl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fmemopen.3 Updated FIXMEs 2006-02-08 09:44:13 +00:00
fmin.3 Hyphenation/dash fixes 2005-07-06 07:41:37 +00:00
fminf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fminl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fmod.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
fmodf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fmodl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fmtmsg.3 Change itacised function names and page xrefs to bold 2005-11-02 11:34:24 +00:00
fnmatch.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
fopen.3 Added description of 'x' mode character (exclusive open). 2005-12-15 15:58:16 +00:00
forkpty.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fpathconf.3 Formatting fixes 2005-11-03 12:47:27 +00:00
fpclassify.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
fprintf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fpurge.3 Change itacised function names and page xrefs to bold 2005-11-02 11:34:24 +00:00
fputc.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fputc_unlocked.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fputs.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fputs_unlocked.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fputwc.3 Formatting fixes 2005-10-20 15:11:10 +00:00
fputwc_unlocked.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fputws.3 Formatting fixes 2005-10-20 15:11:10 +00:00
fputws_unlocked.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fread.3 Automated addition of parentheses by add_parens_for_own_funcs.sh 2005-10-19 06:54:38 +00:00
fread_unlocked.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
free.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
freeaddrinfo.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
freehostent.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
freopen.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
frexp.3 Fixed to point out that that frexp() returns a number whose 2005-11-14 14:19:52 +00:00
frexpf.3 These links to frexp.3 were missing 2004-11-12 16:26:12 +00:00
frexpl.3 These links to frexp.3 were missing 2004-11-12 16:26:12 +00:00
fscanf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fseek.3 Grammar/formatting fixes 2006-01-13 09:34:01 +00:00
fseeko.3 Add RETURN VALUE section. 2006-01-13 09:58:42 +00:00
fsetpos.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
ftell.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
ftello.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
ftime.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
ftok.3 Automated addition of parentheses by add_parens_for_own_funcs.sh 2005-10-19 06:54:38 +00:00
ftrylockfile.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fts.3 Classical BSD versions are now always named x.yBSD (formerly 2005-07-18 15:05:56 +00:00
fts_children.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fts_close.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fts_open.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fts_read.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fts_set.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
ftw.3 Change itacised function names and page xrefs to bold 2005-11-02 11:34:24 +00:00
funlockfile.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fwide.3 Global change to many pages... 2006-01-13 02:09:44 +00:00
fwprintf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fwrite.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
fwrite_unlocked.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
gai_strerror.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
gamma.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
gammaf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
gammal.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
gcvt.3 Change itacised function names and page xrefs to bold 2005-11-02 11:34:24 +00:00
get_current_dir_name.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
get_myaddress.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
getaddrinfo.3 Rearranged EAI_* list alphabetically. 2005-12-06 15:18:03 +00:00
getaliasbyname.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
getaliasbyname_r.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
getaliasent.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
getaliasent_r.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
getc.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
getc_unlocked.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
getchar.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
getchar_unlocked.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
getcwd.3 Formatting fixes 2005-11-02 13:55:25 +00:00
getdate.3 Formatting fixes 2005-11-02 13:55:25 +00:00
getdate_r.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
getdelim.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
getdirentries.3 Automated addition of parentheses by add_parens_for_own_funcs.sh 2005-10-19 06:54:38 +00:00
getenv.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
getfsent.3 Change itacised function names and page xrefs to bold 2005-11-02 11:34:24 +00:00
getfsfile.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
getfsspec.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
getgrent.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
getgrent_r.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
getgrgid.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
getgrgid_r.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
getgrnam.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
getgrnam_r.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
getgrouplist.3 Formatting fixes 2005-10-19 14:54:31 +00:00
gethostbyaddr.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
gethostbyname.3 Replace "SYSV" by "System V" 2006-01-13 09:44:53 +00:00
gethostbyname2.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
gethostbyname2_r.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
gethostbyname_r.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
gethostent.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
gethostent_r.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
getipnodebyaddr.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
getipnodebyname.3 Formatting fixes 2005-11-02 13:55:25 +00:00
getline.3 Global change to many pages... 2006-01-13 02:09:44 +00:00
getloadavg.3 Noted that this function is available since glibc 2.2. 2006-01-01 12:00:09 +00:00
getlogin.3 Global change to many pages... 2006-01-13 02:09:44 +00:00
getlogin_r.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
getmntent.3 Replace "SysV" by "System V" 2006-01-13 09:39:55 +00:00
getmntent_r.3 Link to man3/getmntent.3 2005-03-31 14:17:46 +00:00
getnameinfo.3 Global change to many pages... 2006-01-13 02:09:44 +00:00
getnetbyaddr.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
getnetbyname.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
getnetent.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
getnetgrent.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
getnetgrent_r.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
getopt.3 Make clear that when calling getopt_long() and there are no 2006-01-16 22:48:21 +00:00
getopt_long.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
getopt_long_only.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
getpass.3 Global change to many pages... 2006-01-13 02:09:44 +00:00
getprotobyname.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
getprotobynumber.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
getprotoent.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
getpt.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
getpw.3 Replace "SYSV" by "System V" 2006-01-13 09:44:53 +00:00
getpwent.3 Formatting fix 2005-11-15 17:57:53 +00:00
getpwent_r.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
getpwnam.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
getpwnam_r.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
getpwuid.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
getpwuid_r.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
getrpcbyname.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
getrpcbynumber.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
getrpcent.3 Formatting fixes 2005-11-02 13:55:25 +00:00
getrpcport.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
gets.3 Formatting fixes 2005-11-02 13:55:25 +00:00
getservbyname.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
getservbyport.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
getservent.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
getspent.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
getspent_r.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
getspnam.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
getspnam_r.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
getttyent.3 Formatting fixes 2005-10-19 16:30:05 +00:00
getttynam.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
getumask.3 Change itacised function names and page xrefs to bold 2005-11-02 11:34:24 +00:00
getusershell.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
getutent.3 Formatting fixes 2005-10-19 14:48:35 +00:00
getutent_r.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
getutid.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
getutid_r.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
getutline.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
getutline_r.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
getutxent.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
getutxid.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
getutxline.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
getw.3 Automated addition of parentheses by add_parens_for_own_funcs.sh 2005-10-19 06:54:38 +00:00
getwc.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
getwc_unlocked.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
getwchar.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
getwchar_unlocked.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
getwd.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
glob.3 Formatting fixes 2005-11-03 12:47:27 +00:00
globfree.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
gmtime.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
gmtime_r.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
grantpt.3 Added SEE ALSO for pty.7 2005-10-10 13:14:12 +00:00
gsignal.3 Replace "SYSV" by "System V" 2006-01-13 09:44:53 +00:00
hash.3 Change itacised function names and page xrefs to bold 2005-11-02 11:34:24 +00:00
hasmntopt.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
hcreate.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
hcreate_r.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
hdestroy.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
hdestroy_r.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
herror.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
hsearch.3 Global change to many pages... 2006-01-13 02:09:44 +00:00
hsearch_r.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
hstrerror.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
htonl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
htons.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
hypot.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
hypotf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
hypotl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
iconv.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
iconv_close.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
iconv_open.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
ilogb.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
ilogbf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
ilogbl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
imaxabs.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
imaxdiv.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
index.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
inet.3 tfix 2006-01-23 06:43:04 +00:00
inet_addr.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
inet_aton.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
inet_lnaof.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
inet_makeaddr.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
inet_netof.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
inet_network.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
inet_ntoa.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
inet_ntop.3 Automated addition of parentheses by add_parens_for_own_funcs.sh 2005-10-19 06:54:38 +00:00
inet_pton.3 Change itacised function names and page xrefs to bold 2005-11-02 11:34:24 +00:00
infnan.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
initgroups.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
initstate.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
innetgr.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
insque.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
intro.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
iruserok.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
isalnum.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
isalpha.3 Formatting fixes 2005-10-19 16:30:05 +00:00
isascii.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
isatty.3 Classical BSD versions are now always named x.yBSD (formerly 2005-07-18 15:05:56 +00:00
isblank.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
iscntrl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
isdigit.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
isfinite.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
isgraph.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
isgreater.3 Hyphenation/dash fixes 2005-07-06 07:41:37 +00:00
isgreaterequal.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
isinf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
isinff.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
isinfl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
isless.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
islessequal.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
islessgreater.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
islower.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
isnan.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
isnormal.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
isprint.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
ispunct.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
isspace.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
isunordered.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
isupper.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
iswalnum.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
iswalpha.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
iswblank.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
iswcntrl.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
iswctype.3 Automated addition of parentheses by add_parens_for_own_funcs.sh 2005-10-19 06:54:38 +00:00
iswdigit.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
iswgraph.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
iswlower.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
iswprint.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
iswpunct.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
iswspace.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
iswupper.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
iswxdigit.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
isxdigit.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
j0.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
j0f.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
j0l.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
j1.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
j1f.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
j1l.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
jn.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
jnf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
jnl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
jrand48.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
jrand48_r.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
key_decryptsession.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
key_encryptsession.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
key_gendes.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
key_secretkey_is_set.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
key_setsecret.3 Formatting fixes 2005-10-19 16:30:05 +00:00
killpg.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
klogctl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
l64a.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
labs.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
lckpwdf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
lcong48.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
lcong48_r.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
ldexp.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
ldexpf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
ldexpl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
ldiv.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
lfind.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
lgamma.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
lgamma_r.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
lgammaf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
lgammaf_r.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
lgammal.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
lgammal_r.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
llabs.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
lldiv.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
llrint.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
llrintf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
llrintl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
llround.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
llroundf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
llroundl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
localeconv.3 Added cross-ref to locale.7 for 'struct lconv' defn. 2006-02-07 23:32:50 +00:00
localtime.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
localtime_r.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
lockf.3 Formatting fix 2006-01-14 17:14:10 +00:00
log.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
log1p.3 Hyphenation/dash fixes 2005-07-06 07:41:37 +00:00
log1pf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
log1pl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
log2.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
log2f.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
log2l.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
log10.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
log10f.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
log10l.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
logb.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
logbf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
logbl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
logf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
login.3 Formatting fixes 2005-11-02 13:55:25 +00:00
login_tty.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
logl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
logout.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
logwtmp.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
longjmp.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
lrand48.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
lrand48_r.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
lrint.3 Hyphenation/dash fixes 2005-07-06 07:41:37 +00:00
lrintf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
lrintl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
lround.3 Hyphenation/dash fixes 2005-07-06 07:41:37 +00:00
lroundf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
lroundl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
lsearch.3 Formatting fixes 2005-10-19 13:48:50 +00:00
lseek64.3 Change itacised function names and page xrefs to bold 2005-11-02 11:34:24 +00:00
makecontext.3 Replace "SysV" by "System V" 2006-01-13 09:39:55 +00:00
malloc.3 Formatting fix 2005-11-15 17:56:36 +00:00
malloc_hook.3 Change itacised function names and page xrefs to bold 2005-11-02 11:34:24 +00:00
mblen.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
mbrlen.3 Automated addition of parentheses by add_parens_for_own_funcs.sh 2005-10-19 06:54:38 +00:00
mbrtowc.3 Automated addition of parentheses by add_parens_for_own_funcs.sh 2005-10-19 06:54:38 +00:00
mbsinit.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
mbsnrtowcs.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
mbsrtowcs.3 Automated addition of parentheses by add_parens_for_own_funcs.sh 2005-10-19 06:54:38 +00:00
mbstowcs.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
mbtowc.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
memalign.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
memccpy.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
memchr.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
memcmp.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
memcpy.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
memfrob.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
memmem.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
memmove.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
mempcpy.3 Formatting fixes 2005-11-02 13:55:25 +00:00
memrchr.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
memset.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
mkdtemp.3 Updated FIXMEs 2006-02-08 09:44:13 +00:00
mkfifo.3 Minor change to RETURN VALUE text. 2005-10-19 13:15:49 +00:00
mkstemp.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
mktemp.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
mktime.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
mmap64.3 new link to mmap.2 2006-01-15 20:40:32 +00:00
modf.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
modff.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
modfl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
mpool.3 Change itacised function names and page xrefs to bold 2005-11-02 11:34:24 +00:00
mrand48.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
mrand48_r.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
mtrace.3 Change itacised function names and page xrefs to bold 2005-11-02 11:34:24 +00:00
muntrace.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
nan.3 Change itacised function names and page xrefs to bold 2005-11-02 11:34:24 +00:00
nanf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
nanl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
nearbyint.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
nearbyintf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
nearbyintl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
netlink.3 Formatting fixes 2005-11-03 12:47:27 +00:00
nextafter.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
nextafterf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
nextafterl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
nexttoward.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
nexttowardf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
nexttowardl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
nftw.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
nl_langinfo.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
nrand48.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
nrand48_r.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
ntohl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
ntohs.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
on_exit.3 Formatting fixes 2005-06-23 09:58:22 +00:00
open_memstream.3 New documentation for the glibc specific fmemopen() and 2005-12-08 16:15:17 +00:00
opendir.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
openlog.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
openpty.3 Slight rewording of recent added text 2006-01-17 20:13:03 +00:00
passwd2des.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
pathconf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
pclose.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
perror.3 Global change to many pages... 2006-01-13 02:09:44 +00:00
pmap_getmaps.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
pmap_getport.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
pmap_rmtcall.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
pmap_set.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
pmap_unset.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
popen.3 Formatting fixes 2005-11-02 13:55:25 +00:00
posix_memalign.3 Formerly, the pge said that all systems declare memalign() in 2005-11-15 18:17:08 +00:00
posix_openpt.3 Added SEE ALSO for pty.7 2005-10-10 13:14:12 +00:00
pow.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
pow10.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
pow10f.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
pow10l.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
powf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
powl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
printf.3 Global change to many pages... 2006-01-13 02:09:44 +00:00
profil.3 Automated addition of parentheses by add_parens_for_own_funcs.sh 2005-10-19 06:54:38 +00:00
psignal.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
ptsname.3 Added SEE ALSO for pty.7 2005-10-10 13:14:12 +00:00
ptsname_r.3 New link to ptsname.3 2004-12-17 11:23:16 +00:00
putc.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
putc_unlocked.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
putchar.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
putchar_unlocked.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
putenv.3 Although the glibc implementation returns -1 on error (and some 2005-11-15 17:57:39 +00:00
putgrent.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
putpwent.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
puts.3 Manual fixes for parentheses formatting 2005-10-19 07:29:28 +00:00
putspent.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
pututline.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
pututxline.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
putw.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
putwc.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
putwc_unlocked.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
putwchar.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
putwchar_unlocked.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
qecvt.3 Replace "SysV" by "System V" 2006-01-13 09:39:55 +00:00
qecvt_r.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
qfcvt.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
qfcvt_r.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
qgcvt.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
qsort.3 Small rewording under EXAMPLE. 2006-01-16 19:48:56 +00:00
queue.3 Classical BSD versions are now always named x.yBSD (formerly 2005-07-18 15:05:56 +00:00
raise.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
rand.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
rand_r.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
random.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
rcmd.3 Classical BSD versions are now always named x.yBSD (formerly 2005-07-18 15:05:56 +00:00
re_comp.3 Formatting fixes 2005-11-02 13:55:25 +00:00
re_exec.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
readdir.3 Global change to many pages... 2006-01-13 02:09:44 +00:00
realloc.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
realpath.3 Change itacised function names and page xrefs to bold 2005-11-02 11:34:24 +00:00
recno.3 Change itacised function names and page xrefs to bold 2005-11-02 11:34:24 +00:00
regcomp.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
regerror.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
regex.3 Automated addition of parentheses by add_parens_for_own_funcs.sh 2005-10-19 06:54:38 +00:00
regexec.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
regfree.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
registerrpc.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
remainder.3 Formatting fixes 2005-10-19 16:30:05 +00:00
remainderf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
remainderl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
remove.3 Change itacised function names and page xrefs to bold 2005-11-02 11:34:24 +00:00
remque.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
remquo.3 Compressed synopsis as per Fabian Kreutz's suggestion 2004-11-11 17:28:42 +00:00
remquof.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
remquol.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
res_init.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
res_mkquery.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
res_query.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
res_querydomain.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
res_search.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
res_send.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
resolver.3 dded resolver(5) to SEE ALSO 2005-12-13 18:42:35 +00:00
rewind.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
rewinddir.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
rexec.3 Added comment 2005-11-03 14:29:44 +00:00
rindex.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
rint.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
rintf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
rintl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
round.3 Formatting fixes 2005-10-19 14:48:35 +00:00
roundf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
roundl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
rpc.3 Formatting fixes 2005-11-02 13:55:25 +00:00
rresvport.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
rtime.3 Formatting fixes 2005-10-20 15:11:10 +00:00
rtnetlink.3 Updated FIXMEs 2006-02-08 09:44:13 +00:00
ruserok.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
scalb.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
scalbf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
scalbl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
scalbln.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
scalblnf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
scalblnl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
scalbn.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
scalbnf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
scalbnl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
scandir.3 Formatting fixes 2005-10-19 14:54:31 +00:00
scanf.3 Minor formatting & wording fixes. 2006-02-05 08:57:26 +00:00
seed48.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
seed48_r.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
seekdir.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
setaliasent.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
setbuf.3 Formatting fixes 2005-11-02 13:55:25 +00:00
setbuffer.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
setenv.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
setfsent.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
setgrent.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
sethostent.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
setjmp.3 Replace "SYSV" by "System V" 2006-01-13 09:44:53 +00:00
setkey.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
setlinebuf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
setlocale.3 Added SEE ALSO ref for nl_langinfo.3 2006-02-07 20:57:53 +00:00
setlogmask.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
setmntent.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
setnetent.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
setnetgrent.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
setprotoent.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
setpwent.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
setrpcent.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
setservent.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
setspent.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
setstate.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
setttyent.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
setusershell.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
setutent.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
setutxent.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
setvbuf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
sgetspent.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
sgetspent_r.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
shm_open.3 hyphen/dash fixes 2005-07-18 12:43:00 +00:00
sigaddset.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
sigblock.3 Links to sigvec.3 2005-11-29 14:54:39 +00:00
sigdelset.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
sigemptyset.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
sigfillset.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
siggetmask.3 Links to sigvec.3 2005-11-29 14:54:39 +00:00
sighold.3 Links to sigset.3 2005-11-29 17:42:57 +00:00
sigignore.3 Links to sigset.3 2005-11-29 17:42:57 +00:00
siginterrupt.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
sigismember.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
siglongjmp.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
sigmask.3 Links to sigvec.3 2005-11-29 14:54:39 +00:00
signbit.3 hyphen/dash fixes 2005-07-06 12:57:38 +00:00
signgam.3 Link as suggested by AEB/Fabian Kreutz 2004-11-12 14:50:51 +00:00
significand.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
significandf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
significandl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
sigpause.3 Some minor wording fixes; clarified System V origins of 2005-11-29 15:13:21 +00:00
sigrelse.3 Links to sigset.3 2005-11-29 17:42:57 +00:00
sigset.3 Various changes, notably more detail on FIXMEs 2005-11-30 13:33:11 +00:00
sigsetjmp.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
sigsetmask.3 Links to sigvec.3 2005-11-29 14:54:39 +00:00
sigsetops.3 Added a GLIBC NOTES section describing sigisemptyset(), 2005-11-21 14:50:40 +00:00
sigvec.3 Added sigset(3) to SEE ALSO 2005-11-29 17:39:29 +00:00
sin.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
sincos.3 Change suggested by Fabian Kreutz 2004-11-15 13:11:26 +00:00
sincosf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
sincosl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
sinf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
sinh.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
sinhf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
sinhl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
sinl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
sleep.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
snprintf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
sprintf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
sqrt.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
sqrtf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
sqrtl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
srand.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
srand48.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
srand48_r.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
srandom.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
sscanf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
ssignal.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
stdarg.3 Formatting fixes 2005-11-03 12:47:27 +00:00
stderr.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
stdin.3 Formatting fixes 2005-10-20 15:11:10 +00:00
stdio.3 Removed references to fropen() and fwopen(), which are 2005-10-12 14:11:30 +00:00
stdio_ext.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
stdout.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
stpcpy.3 Global change to many pages... 2006-01-13 02:09:44 +00:00
stpncpy.3 Automated addition of parentheses by add_parens_for_own_funcs.sh 2005-10-19 06:54:38 +00:00
strcasecmp.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
strcasestr.3 Link to strstr.3 2005-04-05 14:00:36 +00:00
strcat.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
strchr.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
strcmp.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
strcoll.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
strcpy.3 s/nulls/null bytes/ 2006-01-01 07:20:29 +00:00
strcspn.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
strdup.3 Global change to many pages... 2006-01-13 02:09:44 +00:00
strdupa.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
strerror.3 Added err(3) to SEE ALSO 2005-12-14 12:09:39 +00:00
strerror_r.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
strfmon.3 Global change to many pages... 2006-01-13 02:09:44 +00:00
strfry.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
strftime.3 Global change to many pages... 2006-01-13 02:09:44 +00:00
string.3 Global change to many pages... 2006-01-13 02:09:44 +00:00
strlen.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
strncasecmp.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
strncat.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
strncmp.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
strncpy.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
strndup.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
strndupa.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
strnlen.3 Automated addition of parentheses by add_parens_for_own_funcs.sh 2005-10-19 06:54:38 +00:00
strpbrk.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
strptime.3 Global change to many pages... 2006-01-13 02:09:44 +00:00
strrchr.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
strsep.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
strsignal.3 Formatting fixes 2005-10-19 13:48:50 +00:00
strspn.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
strstr.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
strtod.3 Formatting fixes 2005-11-02 13:55:25 +00:00
strtof.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
strtoimax.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
strtok.3 Fix typo 2005-11-21 08:52:27 +00:00
strtok_r.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
strtol.3 s/string must begin/string may begin/ 2006-01-19 18:45:50 +00:00
strtold.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
strtoll.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
strtoq.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
strtoul.3 s/string must begin/string may begin/ 2006-01-19 18:45:50 +00:00
strtoull.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
strtoumax.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
strtouq.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
strverscmp.3 Manual fixes for parentheses formatting 2005-10-19 07:29:28 +00:00
strxfrm.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
svc_destroy.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
svc_freeargs.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
svc_getargs.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
svc_getcaller.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
svc_getreq.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
svc_getreqset.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
svc_register.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
svc_run.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
svc_sendreply.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
svc_unregister.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
svcerr_auth.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
svcerr_decode.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
svcerr_noproc.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
svcerr_noprog.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
svcerr_progvers.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
svcerr_systemerr.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
svcerr_weakauth.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
svcfd_create.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
svcraw_create.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
svctcp_create.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
svcudp_bufcreate.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
svcudp_create.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
swab.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
swapcontext.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
swprintf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
sysconf.3 Global change to many pages... 2006-01-13 02:09:44 +00:00
syslog.3 Change itacised function names and page xrefs to bold 2005-11-02 11:34:24 +00:00
system.3 Formatting fixes 2005-11-02 13:55:25 +00:00
tan.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
tanf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
tanh.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
tanhf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
tanhl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
tanl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
tcdrain.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
tcflow.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
tcflush.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
tcgetattr.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
tcgetpgrp.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
tcgetsid.3 Formatting fixes 2005-10-20 15:11:10 +00:00
tcsendbreak.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
tcsetattr.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
tcsetpgrp.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
tdelete.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
tdestroy.3 New link to tsearch.3 2005-06-23 14:16:40 +00:00
telldir.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
tempnam.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
termios.3 Global change to many pages... 2006-01-13 02:09:44 +00:00
tfind.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
tgamma.3 Change itacised function names and page xrefs to bold 2005-11-02 11:34:24 +00:00
tgammaf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
tgammal.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
timegm.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
timelocal.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
tmpfile.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
tmpnam.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
tmpnam_r.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
toascii.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
tolower.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
toupper.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
towctrans.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
towlower.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
towupper.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
trunc.3 Hyphenation/dash fixes 2005-07-06 07:41:37 +00:00
truncf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
truncl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
tsearch.3 Formatting fixes 2005-10-19 13:48:50 +00:00
ttyname.3 Global change to many pages... 2006-01-13 02:09:44 +00:00
ttyname_r.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
ttyslot.3 Replace "SYSV" by "System V" 2006-01-13 09:44:53 +00:00
twalk.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
tzset.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
ualarm.3 Change itacised function names and page xrefs to bold 2005-11-02 11:34:24 +00:00
ulckpwdf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
ulimit.3 Formatting fixes 2005-10-19 14:48:35 +00:00
undocumented.3 [f]statvfs is now documented in Section 2. 2005-11-28 08:47:34 +00:00
ungetc.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
ungetwc.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
unlocked_stdio.3 Formatting fixes 2005-10-19 14:54:31 +00:00
unlockpt.3 Change itacised function names and page xrefs to bold 2005-11-02 11:34:24 +00:00
unsetenv.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
updwtmp.3 Automated addition of parentheses by add_parens_for_own_funcs.sh 2005-10-19 06:54:38 +00:00
usleep.3 Change itacised function names and page xrefs to bold 2005-11-02 11:34:24 +00:00
utmpname.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
va_arg.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
va_copy.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
va_end.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
va_start.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
valloc.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
vasprintf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
vdprintf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
verr.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
verrx.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
versionsort.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
vfprintf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
vfscanf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
vfwprintf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
vprintf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
vscanf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
vsnprintf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
vsprintf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
vsscanf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
vswprintf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
vsyslog.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
vwarn.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
vwarnx.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
vwprintf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
warn.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
warnx.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
wcpcpy.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
wcpncpy.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
wcrtomb.3 Automated addition of parentheses by add_parens_for_own_funcs.sh 2005-10-19 06:54:38 +00:00
wcscasecmp.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
wcscat.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
wcschr.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
wcscmp.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
wcscpy.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
wcscspn.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
wcsdup.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
wcslen.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
wcsncasecmp.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
wcsncat.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
wcsncmp.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
wcsncpy.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
wcsnlen.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
wcsnrtombs.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
wcspbrk.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
wcsrchr.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
wcsrtombs.3 Automated addition of parentheses by add_parens_for_own_funcs.sh 2005-10-19 06:54:38 +00:00
wcsspn.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
wcsstr.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
wcstoimax.3 Automated unformatting of parentheses using unformat_parens.sh 2005-10-19 07:07:02 +00:00
wcstok.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
wcstombs.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
wcstoumax.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
wcswidth.3 Automated addition of parentheses by add_parens_for_own_funcs.sh 2005-10-19 06:54:38 +00:00
wctob.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
wctomb.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
wctrans.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
wctype.3 Formatting fixes 2005-10-20 15:11:10 +00:00
wcwidth.3 Automated addition of parentheses by add_parens_for_own_funcs.sh 2005-10-19 06:54:38 +00:00
wmemchr.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
wmemcmp.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
wmemcpy.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
wmemmove.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
wmempcpy.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
wmemset.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
wordexp.3 space clean-up 2005-11-02 11:44:23 +00:00
wordfree.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
wprintf.3 Manual fixes of parentheses formatting 2005-10-19 08:35:30 +00:00
xcrypt.3 Formatting fix 2006-01-14 17:14:10 +00:00
xdecrypt.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
xdr.3 Manual fixes for parentheses formatting 2005-10-19 07:29:28 +00:00
xdr_accepted_reply.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
xdr_array.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
xdr_authunix_parms.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
xdr_bool.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
xdr_bytes.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
xdr_callhdr.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
xdr_callmsg.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
xdr_char.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
xdr_destroy.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
xdr_double.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
xdr_enum.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
xdr_float.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
xdr_free.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
xdr_getpos.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
xdr_inline.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
xdr_int.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
xdr_long.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
xdr_opaque.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
xdr_opaque_auth.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
xdr_pmap.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
xdr_pmaplist.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
xdr_pointer.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
xdr_reference.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
xdr_rejected_reply.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
xdr_replymsg.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
xdr_setpos.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
xdr_short.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
xdr_string.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
xdr_u_char.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
xdr_u_int.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
xdr_u_long.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
xdr_u_short.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
xdr_union.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
xdr_vector.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
xdr_void.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
xdr_wrapstring.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
xdrmem_create.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
xdrrec_create.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
xdrrec_endofrecord.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
xdrrec_eof.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
xdrrec_skiprecord.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
xdrstdio_create.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
xencrypt.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
xprt_register.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
xprt_unregister.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
y0.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
y0f.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
y0l.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
y1.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
y1f.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
y1l.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
yn.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
ynf.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00
ynl.3 Import of man-pages 1.70 2004-11-03 13:51:07 +00:00