aboutsummaryrefslogtreecommitdiffstats
path: root/man3
diff options
context:
space:
mode:
authorMichael Kerrisk <mtk.manpages@gmail.com>2005-10-20 15:11:10 +0000
committerMichael Kerrisk <mtk.manpages@gmail.com>2005-10-20 15:11:10 +0000
commit1e32103455180362f2255599f2e63f755746372a (patch)
tree165d9a0c68f042acb26b9f6b9aff6e86dadf6f26 /man3
parentf87925c6bfa6e7221dd12f6824b633174a79b978 (diff)
downloadman-pages-1e32103455180362f2255599f2e63f755746372a.tar.gz
Formatting fixes
Diffstat (limited to 'man3')
-rw-r--r--man3/addseverity.34
-rw-r--r--man3/atexit.34
-rw-r--r--man3/catopen.34
-rw-r--r--man3/cosh.32
-rw-r--r--man3/dlopen.36
-rw-r--r--man3/errno.34
-rw-r--r--man3/fgetwc.34
-rw-r--r--man3/fgetws.34
-rw-r--r--man3/fputwc.34
-rw-r--r--man3/fputws.34
-rw-r--r--man3/rtime.37
-rw-r--r--man3/stdin.33
-rw-r--r--man3/tcgetsid.34
-rw-r--r--man3/wctype.324
14 files changed, 53 insertions, 25 deletions
diff --git a/man3/addseverity.3 b/man3/addseverity.3
index b1dedffe46..123c95d2fb 100644
--- a/man3/addseverity.3
+++ b/man3/addseverity.3
@@ -47,7 +47,9 @@ New severity classes can also be added by setting the environment varible
.BR SEV_LEVEL .
.SH "CONFORMING TO"
This function is not specified in the X/Open Portability Guide
-although the `fmtsmg' function is. It is available on System V
+although the
+.BR fmtsmg ()
+function is. It is available on System V
systems.
.SH "SEE ALSO"
.BR fmtmsg (3)
diff --git a/man3/atexit.3 b/man3/atexit.3
index 13e2ba433e..4db816173d 100644
--- a/man3/atexit.3
+++ b/man3/atexit.3
@@ -50,7 +50,9 @@ such functions to be registered.
The actual limit supported by an implementation can be obtained using
.BR sysconf (3).
.LP
-Upon a successful call to one of the exec functions,
+Upon a successful call to one of the
+.BR exec ()
+functions,
all registrations are removed.
.SH "RETURN VALUE"
The \fBatexit\fP() function returns the value 0 if successful; otherwise
diff --git a/man3/catopen.3 b/man3/catopen.3
index c30b9fbf7c..d26348325f 100644
--- a/man3/catopen.3
+++ b/man3/catopen.3
@@ -144,7 +144,9 @@ The default path varies, but usually looks at a number of places below
These functions are available for Linux since libc 4.4.4c.
In the case of linux libc4 and libc5, the catalog descriptor
.I nl_catd
-is a mmap()'ed area of memory and not a file descriptor.
+is a
+.BR mmap ()'ed
+area of memory and not a file descriptor.
The
.I flag
argument to
diff --git a/man3/cosh.3 b/man3/cosh.3
index ff74e6010f..47e0118c3a 100644
--- a/man3/cosh.3
+++ b/man3/cosh.3
@@ -54,6 +54,6 @@ The float and the long double variants are C99 requirements.
.BR acosh (3),
.BR asinh (3),
.BR atanh (3),
-H.BR ccos (3),
+.BR ccos (3),
.BR sinh (3),
.BR tanh (3)
diff --git a/man3/dlopen.3 b/man3/dlopen.3
index 26b1420baf..627c132d04 100644
--- a/man3/dlopen.3
+++ b/man3/dlopen.3
@@ -56,7 +56,11 @@ implement the interface to the dynamic linking loader.
The function
.BR dlerror ()
returns a human readable string describing the most recent error
-that occurred from any of the dl routines (dlopen, dlsym or dlclose)
+that occurred from
+.BR dlopen (),
+.BR dlsym ()
+or
+.BR dlclose ()
since the last call to
.BR dlerror () .
It returns NULL if no errors have occurred since initialization or since
diff --git a/man3/errno.3 b/man3/errno.3
index 1b51943daa..7edb5a3bc1 100644
--- a/man3/errno.3
+++ b/man3/errno.3
@@ -297,7 +297,9 @@ Stale file handle
.\" ETIME is part of XSR option
.TP
.B ETIME
-STREAM ioctl() timeout
+STREAM
+.BR ioctl ()
+timeout
.TP
.B ETIMEDOUT
Operation timed out
diff --git a/man3/fgetwc.3 b/man3/fgetwc.3
index 2d881ec4e9..a686872705 100644
--- a/man3/fgetwc.3
+++ b/man3/fgetwc.3
@@ -53,7 +53,9 @@ ISO/ANSI C, UNIX98
The behaviour of \fBfgetwc\fP() depends on the LC_CTYPE category of the
current locale.
.PP
-In the absence of additional information passed to the fopen call, it is
+In the absence of additional information passed to the
+.BR fopen ()
+call, it is
reasonable to expect that \fBfgetwc\fP() will actually read a multibyte sequence
from the stream and then convert it to a wide character.
.SH "SEE ALSO"
diff --git a/man3/fgetws.3 b/man3/fgetws.3
index f8381129a3..c96ddb4261 100644
--- a/man3/fgetws.3
+++ b/man3/fgetws.3
@@ -42,7 +42,9 @@ ISO/ANSI C, UNIX98
The behaviour of \fBfgetws\fP() depends on the LC_CTYPE category of the
current locale.
.PP
-In the absence of additional information passed to the fopen call, it is
+In the absence of additional information passed to the
+.BR fopen ()
+call, it is
reasonable to expect that \fBfgetws\fP() will actually read a multibyte string
from the stream and then convert it to a wide character string.
.PP
diff --git a/man3/fputwc.3 b/man3/fputwc.3
index db6f355b3e..023ff39e6a 100644
--- a/man3/fputwc.3
+++ b/man3/fputwc.3
@@ -50,7 +50,9 @@ ISO/ANSI C, UNIX98
The behaviour of \fBfputwc\fP() depends on the LC_CTYPE category of the
current locale.
.PP
-In the absence of additional information passed to the fopen call, it is
+In the absence of additional information passed to the
+.BR fopen ()
+call, it is
reasonable to expect that \fBfputwc\fP() will actually write the multibyte
sequence corresponding to the wide character \fIwc\fP.
.SH "SEE ALSO"
diff --git a/man3/fputws.3 b/man3/fputws.3
index 7dd3213370..61693014a9 100644
--- a/man3/fputws.3
+++ b/man3/fputws.3
@@ -36,7 +36,9 @@ ISO/ANSI C, UNIX98
The behaviour of \fBfputws\fP() depends on the LC_CTYPE category of the
current locale.
.PP
-In the absence of additional information passed to the fopen call, it is
+In the absence of additional information passed to the
+.BR fopen ()
+call, it is
reasonable to expect that \fBfputws\fP() will actually write the multibyte
string corresponding to the wide character string \fIws\fP.
.SH "SEE ALSO"
diff --git a/man3/rtime.3 b/man3/rtime.3
index abb5a90cc2..f4e55db1ac 100644
--- a/man3/rtime.3
+++ b/man3/rtime.3
@@ -35,7 +35,12 @@ In case of error \-1 is returned, and
.I errno
is set appropriately.
.SH ERRORS
-All errors for underlying functions (sendto, poll, recvfrom, connect, read)
+All errors for underlying functions
+.RB ( sendto (),
+.BR poll (),
+.BR recvfrom (),
+.BR connect (),
+.BR read ())
can occur. Moreover:
.TP
.B EIO
diff --git a/man3/stdin.3 b/man3/stdin.3
index ef72cfdd05..7a45ef1c3a 100644
--- a/man3/stdin.3
+++ b/man3/stdin.3
@@ -71,7 +71,8 @@ unexpected results and should generally be avoided.
in detail how this interaction is supposed to work.)
A general rule is that file descriptors are handled in the kernel,
while stdio is just a library. This means for example, that after an
-exec, the child inherits all open file descriptors, but all old streams
+.BR exec (),
+the child inherits all open file descriptors, but all old streams
have become inaccessible.
.Pp
Since the symbols
diff --git a/man3/tcgetsid.3 b/man3/tcgetsid.3
index 7891d16704..8ccdebe2e9 100644
--- a/man3/tcgetsid.3
+++ b/man3/tcgetsid.3
@@ -57,7 +57,9 @@ The calling process does not have a controlling terminal, or
it has one but it is not described by
.IR fd .
.SH NOTES
-This function is implemented via the TIOCGSID ioctl, present
+This function is implemented via the TIOCGSID
+.BR ioctl (),
+present
since Linux 2.1.71.
.SH "CONFORMS TO"
POSIX 1003.1-2001
diff --git a/man3/wctype.3 b/man3/wctype.3
index dbec492799..0f6f402623 100644
--- a/man3/wctype.3
+++ b/man3/wctype.3
@@ -32,18 +32,18 @@ The \fBwctype\fP() function returns a property, given by its name. The set of
valid names depends on the LC_CTYPE category of the current locale, but the
following names are valid in all locales.
.nf
- "alnum" \- realizes the \fBisalnum\fP classification function
- "alpha" \- realizes the \fBisalpha\fP classification function
- "blank" \- realizes the \fBisblank\fP classification function
- "cntrl" \- realizes the \fBiscntrl\fP classification function
- "digit" \- realizes the \fBisdigit\fP classification function
- "graph" \- realizes the \fBisgraph\fP classification function
- "lower" \- realizes the \fBislower\fP classification function
- "print" \- realizes the \fBisprint\fP classification function
- "punct" \- realizes the \fBispunct\fP classification function
- "space" \- realizes the \fBisspace\fP classification function
- "upper" \- realizes the \fBisupper\fP classification function
- "xdigit" \- realizes the \fBisxdigit\fP classification function
+ "alnum" \- realizes the \fBisalnum\fP() classification function
+ "alpha" \- realizes the \fBisalpha\fP() classification function
+ "blank" \- realizes the \fBisblank\fP() classification function
+ "cntrl" \- realizes the \fBiscntrl\fP() classification function
+ "digit" \- realizes the \fBisdigit\fP() classification function
+ "graph" \- realizes the \fBisgraph\fP() classification function
+ "lower" \- realizes the \fBislower\fP() classification function
+ "print" \- realizes the \fBisprint\fP() classification function
+ "punct" \- realizes the \fBispunct\fP() classification function
+ "space" \- realizes the \fBisspace\fP() classification function
+ "upper" \- realizes the \fBisupper\fP() classification function
+ "xdigit" \- realizes the \fBisxdigit\fP() classification function
.fi
.SH "RETURN VALUE"
The \fBwctype\fP() function returns a property descriptor if the \fIname\fP is