aboutsummaryrefslogtreecommitdiffstats
path: root/man3
diff options
context:
space:
mode:
Diffstat (limited to 'man3')
-rw-r--r--man3/cfree.34
-rw-r--r--man3/dbopen.32
-rw-r--r--man3/dlopen.310
-rw-r--r--man3/fenv.34
-rw-r--r--man3/fmtmsg.36
-rw-r--r--man3/gamma.34
-rw-r--r--man3/getaddrinfo.32
-rw-r--r--man3/gethostbyname.34
-rw-r--r--man3/getnameinfo.32
-rw-r--r--man3/getspnam.32
-rw-r--r--man3/login.32
-rw-r--r--man3/printf.314
-rw-r--r--man3/regex.310
-rw-r--r--man3/stdio.32
-rw-r--r--man3/sysconf.34
-rw-r--r--man3/termios.312
-rw-r--r--man3/ttyslot.36
-rw-r--r--man3/undocumented.32
-rw-r--r--man3/wordexp.38
19 files changed, 50 insertions, 50 deletions
diff --git a/man3/cfree.3 b/man3/cfree.3
index 1089f2924a..b3976c0503 100644
--- a/man3/cfree.3
+++ b/man3/cfree.3
@@ -53,7 +53,7 @@ This function should never be used.
Use
.BR free (3)
instead.
-.SS "1-arg cfree"
+.SS 1-arg cfree
In glibc, the function
.BR cfree ()
is a synonym for
@@ -65,7 +65,7 @@ The declaration is sometimes in
.I <stdlib.h>
and sometimes in
.IR <malloc.h> .
-.SS "3-arg cfree"
+.SS 3-arg cfree
Some SCO and Solaris versions have malloc libraries with a 3-argument
.BR cfree (),
apparently as an analog to
diff --git a/man3/dbopen.3 b/man3/dbopen.3
index 7bf02dfcde..9861e4c9ea 100644
--- a/man3/dbopen.3
+++ b/man3/dbopen.3
@@ -448,7 +448,7 @@ manual page for more information.)
routines return \-1 on error (setting
.IR errno )
and 0 on success.
-.SS "Key/data pairs"
+.SS Key/data pairs
Access to all file types is based on key/data pairs.
Both keys and data are represented by the following data structure:
.in +4n
diff --git a/man3/dlopen.3 b/man3/dlopen.3
index 7fbc1f0523..90b5bee569 100644
--- a/man3/dlopen.3
+++ b/man3/dlopen.3
@@ -55,7 +55,7 @@ The four functions
.BR dlclose (),
.BR dlerror ()
implement the interface to the dynamic linking loader.
-.SS "dlerror()"
+.SS dlerror()
The function
.BR dlerror ()
returns a human readable string describing the most recent error
@@ -68,7 +68,7 @@ since the last call to
.BR dlerror ().
It returns NULL if no errors have occurred since initialization or since
it was last called.
-.SS "dlopen()"
+.SS dlopen()
The function
.BR dlopen ()
loads the dynamic library file named by the null-terminated
@@ -233,7 +233,7 @@ may force symbol resolution for a library earlier loaded with
If
.BR dlopen ()
fails for any reason, it returns NULL.
-.SS "dlsym()"
+.SS dlsym()
The function
.BR dlsym ()
takes a "handle" of a dynamic library returned by
@@ -274,7 +274,7 @@ will find the next occurrence of a function in the search order
after the current library.
This allows one to provide a wrapper
around a function in another shared library.
-.SS "dlclose()"
+.SS dlclose()
The function
.BR dlclose ()
decrements the reference count on the dynamic library handle
@@ -285,7 +285,7 @@ symbols in it, then the dynamic library is unloaded.
The function
.BR dlclose ()
returns 0 on success, and nonzero on error.
-.SS "The obsolete symbols _init() and _fini()"
+.SS The obsolete symbols _init() and _fini()
The linker recognizes special symbols
.B _init
and
diff --git a/man3/fenv.3 b/man3/fenv.3
index 3faab7ae3b..0f2be52934 100644
--- a/man3/fenv.3
+++ b/man3/fenv.3
@@ -93,7 +93,7 @@ The
.I invalid
exception occurs when there is no well-defined result
for an operation, as for 0/0 or infinity \- infinity or sqrt(\-1).
-.SS "Exception handling"
+.SS Exception handling
Exceptions are represented in two ways: as a single bit
(exception present/absent), and these bits correspond in some
implementation-defined way with bit positions in an integer,
@@ -204,7 +204,7 @@ The value of
should reflect the current rounding mode as set by
.BR fesetround ()
(but see BUGS).
-.SS "Floating-point environment"
+.SS Floating-point environment
The entire floating-point environment, including
control modes and status flags, can be handled
as one opaque object, of type
diff --git a/man3/fmtmsg.3 b/man3/fmtmsg.3
index 31e48fb8ac..074cdd24b6 100644
--- a/man3/fmtmsg.3
+++ b/man3/fmtmsg.3
@@ -53,7 +53,7 @@ information can be found.
It should contain the
.I label
value and a unique identification number.
-.SS "Dummy arguments"
+.SS Dummy arguments
Each of the arguments can have a dummy value.
The dummy classification value
.B MM_NULLMC
@@ -72,7 +72,7 @@ the empty string, and
.B MM_NULLSEV
is a synonym for
.BR NO_SEV .
-.SS "The classification argument"
+.SS The classification argument
The
.I classification
argument is the sum of values describing 4 types of information.
@@ -119,7 +119,7 @@ It is a recoverable error.
.TP
.B MM_NRECOV
It is a nonrecoverable error.
-.SS "The severity argument"
+.SS The severity argument
The
.I severity
argument can take one of the following values:
diff --git a/man3/gamma.3 b/man3/gamma.3
index d4a00b1f85..a26dbe5f1f 100644
--- a/man3/gamma.3
+++ b/man3/gamma.3
@@ -43,11 +43,11 @@ functions, as appropriate.
For the definition of the Gamma function, see
.BR tgamma (3).
-.SS "*BSD version"
+.SS *BSD version
The libm in 4.4BSD and some versions of FreeBSD had a
.BR gamma ()
function that computes the Gamma function, as one would expect.
-.SS "glibc version"
+.SS glibc version
Glibc has a
.BR gamma ()
function that is equivalent to
diff --git a/man3/getaddrinfo.3 b/man3/getaddrinfo.3
index 93fdf7041a..d1d5ee29cb 100644
--- a/man3/getaddrinfo.3
+++ b/man3/getaddrinfo.3
@@ -411,7 +411,7 @@ The
function frees the memory that was allocated
for the dynamically allocated linked list
.IR res .
-.SS "Extensions to getaddrinfo() for Internationalized Domain Names"
+.SS Extensions to getaddrinfo() for Internationalized Domain Names
.PP
Starting with glibc 2.3.4,
.BR getaddrinfo ()
diff --git a/man3/gethostbyname.3 b/man3/gethostbyname.3
index 0f9687b7c6..ff2bd95355 100644
--- a/man3/gethostbyname.3
+++ b/man3/gethostbyname.3
@@ -362,7 +362,7 @@ The BSD prototype for
uses
.I const char *
for the first argument.
-.SS "System V/POSIX extension"
+.SS System V/POSIX extension
POSIX requires the
.BR gethostent ()
call, that should return the next entry in the host data base.
@@ -379,7 +379,7 @@ The glibc version will ignore ipv6 entries.
This function is not reentrant,
and glibc adds a reentrant version
.BR gethostent_r ().
-.SS "GNU extensions"
+.SS GNU extensions
Glibc2 also has a
.BR gethostbyname2 ()
that works like
diff --git a/man3/getnameinfo.3 b/man3/getnameinfo.3
index 781f44a541..d4147de1ca 100644
--- a/man3/getnameinfo.3
+++ b/man3/getnameinfo.3
@@ -111,7 +111,7 @@ cannot be determined.)
If set, then the numeric form of the service address is returned.
(When not set, this will still happen in case the service's name
cannot be determined.)
-.SS "Extensions to getnameinfo() for Internationalized Domain Names"
+.SS Extensions to getnameinfo() for Internationalized Domain Names
.PP
Starting with glibc 2.3.4,
.BR getnameinfo ()
diff --git a/man3/getspnam.3 b/man3/getspnam.3
index 6644e916c9..d51f087dd6 100644
--- a/man3/getspnam.3
+++ b/man3/getspnam.3
@@ -159,7 +159,7 @@ These were the functions that formed the original shadow API.
They are widely available.
.\" Also in libc5
.\" SUN doesn't have sgetspent()
-.SS "Reentrant versions"
+.SS Reentrant versions
Analogous to the reentrant functions for the password database, glibc
also has reentrant functions for the shadow password database.
The
diff --git a/man3/login.3 b/man3/login.3
index d6d6a99294..86086fc1a4 100644
--- a/man3/login.3
+++ b/man3/login.3
@@ -47,7 +47,7 @@ and writes it to both the utmp and the wtmp file.
The function
.BR logout ()
clears the entry in the utmp file again.
-.SS "GNU details"
+.SS GNU details
More precisely,
.BR login ()
takes the argument
diff --git a/man3/printf.3 b/man3/printf.3
index a703ff3a02..bbb2f5b879 100644
--- a/man3/printf.3
+++ b/man3/printf.3
@@ -149,7 +149,7 @@ would cause copying to take place between objects that overlap
(e.g., if the target string array and one of the supplied input arguments
refer to the same buffer).
See NOTES.
-.SS "Return value"
+.SS Return value
Upon successful return, these functions return the number of characters
printed (excluding the null byte used to end output to strings).
@@ -170,7 +170,7 @@ or more means that the output was truncated.
(See also below under NOTES.)
If an output error is encountered, a negative value is returned.
-.SS "Format of the format string"
+.SS Format of the format string
The format string is a character string, beginning and ending
in its initial shift state, if any.
The format string is composed of zero or more directives: ordinary
@@ -252,7 +252,7 @@ Thus,
.in
results in "1234567.89" in the POSIX locale, in "1234567,89" in the
nl_NL locale, and in "1.234.567,89" in the da_DK locale.
-.SS "The flag characters"
+.SS The flag characters
The character % is followed by zero or more of the following flags:
.TP
.B #
@@ -385,7 +385,7 @@ the output uses the locale's alternative output digits, if any.
For example, since glibc 2.2.3 this will give Arabic-Indic digits
in the Persian ("fa_IR") locale.
.\" outdigits keyword in locale file
-.SS "The field width"
+.SS The field width
An optional decimal digit string (with nonzero first digit) specifying
a minimum field width.
If the converted value has fewer characters
@@ -401,7 +401,7 @@ positive field width.
In no case does a nonexistent or small field width cause truncation of a
field; if the result of a conversion is wider than the field width, the
field is expanded to contain the conversion result.
-.SS "The precision"
+.SS The precision
An optional precision, in the form of a period (\(aq.\(aq) followed by an
optional decimal digit string.
Instead of a decimal digit string one may write "*" or "*m$"
@@ -437,7 +437,7 @@ string for
and
.B S
conversions.
-.SS "The length modifier"
+.SS The length modifier
Here, "integer conversion" stands for
.BR d ,
.BR i ,
@@ -574,7 +574,7 @@ and
.BR Lf ,
.BR Lg ,
.BR LG ).
-.SS "The conversion specifier"
+.SS The conversion specifier
A character that specifies the type of conversion to be applied.
The conversion specifiers and their meanings are:
.TP
diff --git a/man3/regex.3 b/man3/regex.3
index 0f69a27e08..ace964df43 100644
--- a/man3/regex.3
+++ b/man3/regex.3
@@ -49,7 +49,7 @@ regcomp, regexec, regerror, regfree \- POSIX regex functions
.BI "void regfree(regex_t *" preg );
.fi
.SH DESCRIPTION
-.SS "POSIX regex compiling"
+.SS POSIX regex compiling
.BR regcomp ()
is used to compile a regular expression into a form that is suitable
for subsequent
@@ -126,7 +126,7 @@ whether
.I eflags
contains
.BR REG_NOTEOL .
-.SS "POSIX regex matching"
+.SS POSIX regex matching
.BR regexec ()
is used to match a null-terminated string
against the precompiled pattern buffer,
@@ -159,7 +159,7 @@ The match-end-of-line operator always fails to match (but see the
compilation flag
.B REG_NEWLINE
above)
-.SS "Byte offsets"
+.SS Byte offsets
Unless
.B REG_NOSUB
was set for the compilation of the pattern buffer, it is possible to
@@ -209,7 +209,7 @@ The relative
.I rm_eo
element indicates the end offset of the match,
which is the offset of the first character after the matching text.
-.SS "POSIX error reporting"
+.SS POSIX error reporting
.BR regerror ()
is used to turn the error codes that can be returned by both
.BR regcomp ()
@@ -238,7 +238,7 @@ are nonzero,
is filled in with the first
.I "errbuf_size \- 1"
characters of the error message and a terminating null byte (\(aq\\0\(aq).
-.SS "POSIX pattern buffer freeing"
+.SS POSIX pattern buffer freeing
Supplying
.BR regfree ()
with a precompiled pattern buffer,
diff --git a/man3/stdio.3 b/man3/stdio.3
index 13085c93f8..8222c0ef1f 100644
--- a/man3/stdio.3
+++ b/man3/stdio.3
@@ -178,7 +178,7 @@ Function versions of the macro functions
and
.B putchar
exist and will be used if the macros definitions are explicitly removed.
-.SS "List of functions"
+.SS List of functions
.TS
;
lb lb
diff --git a/man3/sysconf.3 b/man3/sysconf.3
index a7fbf0ef31..a3a3ba2ba6 100644
--- a/man3/sysconf.3
+++ b/man3/sysconf.3
@@ -99,7 +99,7 @@ The
.BR sysconf ()
argument will be
.BR _SC_FOO .
-.SS "POSIX.1 variables"
+.SS POSIX.1 variables
We give the name of the variable, the name of the
.BR sysconf ()
argument used to inquire about its value,
@@ -218,7 +218,7 @@ format
the value
.B 199009L
indicates the Sept. 1990 revision.
-.SS "POSIX.2 variables"
+.SS POSIX.2 variables
Next, the POSIX.2 values, giving limits for utilities.
.TP
.BR BC_BASE_MAX " - " _SC_BC_BASE_MAX
diff --git a/man3/termios.3 b/man3/termios.3
index d03b53cf67..508da154d2 100644
--- a/man3/termios.3
+++ b/man3/termios.3
@@ -86,7 +86,7 @@ _BSD_SOURCE
.SH DESCRIPTION
The termios functions describe a general terminal interface that is
provided to control asynchronous communications ports.
-.SS "The termios structure"
+.SS The termios structure
.LP
Many of the functions described here have a \fItermios_p\fP argument
that is a pointer to a \fItermios\fP structure.
@@ -649,7 +649,7 @@ and
.BR VTIME ,
see the description of
noncanonical mode below.
-.SS "Retrieving and changing terminal settings"
+.SS Retrieving and changing terminal settings
.PP
.BR tcgetattr ()
gets the parameters associated with the object referred by \fIfd\fP and
@@ -677,7 +677,7 @@ the change occurs after all output written to the object referred by
.I fd
has been transmitted, and all input that has been received but not read
will be discarded before the change is made.
-.SS "Canonical and noncanonical mode"
+.SS Canonical and noncanonical mode
The setting of the
.B ICANON
canon flag in
@@ -761,7 +761,7 @@ MIN byte have been read,
or when the inter-byte timeout expires.
Because the timer is only started after the initial byte
becomes available, at least one byte will be read.
-.SS "Raw mode"
+.SS Raw mode
.LP
.BR cfmakeraw ()
sets the terminal to something like the
@@ -779,7 +779,7 @@ The terminal attributes are set as follows:
termios_p\->c_cflag &= ~(CSIZE | PARENB);
termios_p\->c_cflag |= CS8;
.fi
-.SS "Line control"
+.SS Line control
.LP
.BR tcsendbreak ()
transmits a continuous stream of zero-valued bits for a specific
@@ -831,7 +831,7 @@ transmitting data to the system.
.LP
The default on open of a terminal file is that neither its input nor its
output is suspended.
-.SS "Line speed"
+.SS Line speed
The baud rate functions are provided for getting and setting the values
of the input and output baud rates in the \fItermios\fP structure.
The new values do not take effect
diff --git a/man3/ttyslot.3 b/man3/ttyslot.3
index bcb11a65da..f26a8e352d 100644
--- a/man3/ttyslot.3
+++ b/man3/ttyslot.3
@@ -53,7 +53,7 @@ returns the index of the current user's entry in some file.
.LP
Now "What file?" you ask.
Well, let's first look at some history.
-.SS "Ancient history"
+.SS Ancient history
There used to be a file
.I /etc/ttys
in UNIX V6, that was read by the
@@ -83,7 +83,7 @@ Later systems have more elaborate syntax.
System V-like systems have
.I /etc/inittab
instead.
-.SS "Ancient history (2)"
+.SS Ancient history (2)
On the other hand, there is the file
.I /etc/utmp
listing the people currently logged in.
@@ -97,7 +97,7 @@ using the
call to find the number of the line in
.I /etc/ttys
(counting from 1).
-.SS "The semantics of ttyslot"
+.SS The semantics of ttyslot
Thus, the function
.BR ttyslot ()
returns the index of the controlling terminal of the calling process
diff --git a/man3/undocumented.3 b/man3/undocumented.3
index d81c3e5d35..b498e6d38e 100644
--- a/man3/undocumented.3
+++ b/man3/undocumented.3
@@ -40,7 +40,7 @@ please look in the source code, write a man page (using a style
similar to that of the other Linux section 3 man pages), and send it to
.B mtk.manpages@gmail.com
for inclusion in the next man page release.
-.SS "The list"
+.SS The list
.BR authdes_create (3),
.BR authdes_getucred (3),
diff --git a/man3/wordexp.3 b/man3/wordexp.3
index bf25eb3660..4fdf4ab147 100644
--- a/man3/wordexp.3
+++ b/man3/wordexp.3
@@ -80,7 +80,7 @@ More precisely, it does not free
its argument, but it frees the array
.I we_wordv
and the strings that points to.
-.SS "The string argument"
+.SS The string argument
Since the expansion is the same as the expansion by the shell (see
.BR sh (1))
of the parameters to a command, the string
@@ -96,7 +96,7 @@ If the argument
contains a word that starts with an unquoted comment character #,
then it is unspecified whether that word and all following words
are ignored, or the # is treated as a non-comment character.
-.SS "The expansion"
+.SS The expansion
The expansion done consists of the following stages:
tilde expansion (replacing ~user by user's home directory),
variable substitution (replacing $FOO by the value of the environment
@@ -109,11 +109,11 @@ The result of expansion of special parameters
.LP
Field splitting is done using the environment variable $IFS.
If it is not set, the field separators are space, tab and newline.
-.SS "The output array"
+.SS The output array
The array
.I we_wordv
contains the words found, followed by a NULL.
-.SS "The flags argument"
+.SS The flags argument
The
.I flag
argument is a bitwise inclusive OR of the following values: