aboutsummaryrefslogtreecommitdiffstats
path: root/man3
diff options
context:
space:
mode:
Diffstat (limited to 'man3')
-rw-r--r--man3/atoi.32
-rw-r--r--man3/clock_getres.32
-rw-r--r--man3/insque.36
-rw-r--r--man3/nl_langinfo.32
-rw-r--r--man3/posix_memalign.38
-rw-r--r--man3/realpath.38
-rw-r--r--man3/sigsetops.32
-rw-r--r--man3/stdin.32
8 files changed, 16 insertions, 16 deletions
diff --git a/man3/atoi.3 b/man3/atoi.3
index 18592eaa68..5ad6bffdf7 100644
--- a/man3/atoi.3
+++ b/man3/atoi.3
@@ -87,7 +87,7 @@ The non-standard
.BR atoq ()
function is not present in libc 4.6.27
or glibc 2, but is present in libc5 and libc 4.7 (though only as an
-inline function in \fB<stdlib.h>\fP until libc 5.4.44).
+inline function in \fI<stdlib.h>\fP until libc 5.4.44).
The
.BR atoll ()
function is present in glibc 2 since version 2.0.2, but
diff --git a/man3/clock_getres.3 b/man3/clock_getres.3
index 227eb006a6..bd14447477 100644
--- a/man3/clock_getres.3
+++ b/man3/clock_getres.3
@@ -143,7 +143,7 @@ SUSv2, POSIX.1-2001.
.SH AVAILABILITY
On POSIX systems on which these functions are available, the symbol
.B _POSIX_TIMERS
-is defined in <unistd.h> to a value greater than 0.
+is defined in \fI<unistd.h>\fP to a value greater than 0.
The symbols
.BR _POSIX_MONOTONIC_CLOCK ,
.BR _POSIX_CPUTIME ,
diff --git a/man3/insque.3 b/man3/insque.3
index e0bf00e8fb..3bfe01ba65 100644
--- a/man3/insque.3
+++ b/man3/insque.3
@@ -73,11 +73,11 @@ struct qelem {
.RE
This is still what you will get if _GNU_SOURCE is defined before
-including <search.h>.
+including \fI<search.h>\fP.
The location of the prototypes for these functions differs among several
versions of UNIX.
The above is the POSIX version.
-Some systems place them in <string.h>.
+Some systems place them in \fI<string.h>\fP.
Linux libc4,5 placed them
-in <stdlib.h>.
+in \fI<stdlib.h>\fP.
diff --git a/man3/nl_langinfo.3 b/man3/nl_langinfo.3
index 8890467013..44d5c7a8a0 100644
--- a/man3/nl_langinfo.3
+++ b/man3/nl_langinfo.3
@@ -31,7 +31,7 @@ Individual and additional elements of the locale categories can
be queried.
.PP
Examples for the locale elements that can be specified in \fIitem\fP
-using the constants defined in <langinfo.h> are:
+using the constants defined in \fI<langinfo.h>\fP are:
.TP
.BR CODESET \ (LC_CTYPE)
Return a string with the name of the character encoding used in the
diff --git a/man3/posix_memalign.3 b/man3/posix_memalign.3
index e091dfc282..1ee1082211 100644
--- a/man3/posix_memalign.3
+++ b/man3/posix_memalign.3
@@ -116,18 +116,18 @@ comes from POSIX.1d.
.SS Headers
Everybody agrees that
.BR posix_memalign ()
-is declared in <stdlib.h>.
+is declared in \fI<stdlib.h>\fP.
In order to declare it, glibc needs
_GNU_SOURCE defined, or _XOPEN_SOURCE defined to a value not less than 600.
On some systems
.BR memalign ()
-is declared in <stdlib.h> instead of <malloc.h>.
+is declared in \fI<stdlib.h>\fP instead of \fI<malloc.h>\fP.
According to SUSv2,
.BR valloc ()
-is declared in <stdlib.h>.
-Libc4,5 and glibc declare it in <malloc.h> and perhaps also in <stdlib.h>
+is declared in \fI<stdlib.h>\fP.
+Libc4,5 and glibc declare it in \fI<malloc.h>\fP and perhaps also in <stdlib.h>
(namely, if _GNU_SOURCE is defined, or _BSD_SOURCE is defined, or,
for glibc, if _XOPEN_SOURCE_EXTENDED is defined, or, equivalently,
_XOPEN_SOURCE is defined to a value not less than 500).
diff --git a/man3/realpath.3 b/man3/realpath.3
index 3c6ff611e0..1f3faa4c65 100644
--- a/man3/realpath.3
+++ b/man3/realpath.3
@@ -100,9 +100,9 @@ On Linux this function appeared in libc 4.5.21.
4.4BSD, POSIX.1-2001.
In 4.4BSD and Solaris the limit on the pathname length is MAXPATHLEN
-(found in <sys/param.h>).
+(found in \fI<sys/param.h>\fP).
SUSv2 prescribes PATH_MAX and
-NAME_MAX, as found in <limits.h> or provided by the
+NAME_MAX, as found in \fI<limits.h>\fP or provided by the
.BR pathconf (3)
function.
A typical source fragment would be
@@ -127,8 +127,8 @@ Solaris may return a relative pathname when the
argument is relative.
The prototype of
.BR realpath ()
-is given in <unistd.h> in libc4 and libc5,
-but in <stdlib.h> everywhere else.
+is given in \fI<unistd.h>\fP in libc4 and libc5,
+but in \fI<stdlib.h>\fP everywhere else.
.SH NOTES
The glibc implementation of
.BR realpath ()
diff --git a/man3/sigsetops.3 b/man3/sigsetops.3
index d75e2bd4e7..1ef102ed94 100644
--- a/man3/sigsetops.3
+++ b/man3/sigsetops.3
@@ -93,7 +93,7 @@ is not a valid signal.
POSIX.1-2001.
.SH NOTES
.SS Glibc Notes
-If the _GNU_SOURCE feature test macro is defined, then <signal.h>
+If the _GNU_SOURCE feature test macro is defined, then \fI<signal.h>\fP
exposes three other functions for manipulating signal
sets.
.TP
diff --git a/man3/stdin.3 b/man3/stdin.3
index 377eff7a80..f6766e2fb5 100644
--- a/man3/stdin.3
+++ b/man3/stdin.3
@@ -61,7 +61,7 @@ and
are 0, 1, and 2, respectively.
The preprocessor symbols STDIN_FILENO,
STDOUT_FILENO, and STDERR_FILENO are defined with these values in
-<unistd.h>.
+\fI<unistd.h>\fP.
(Applying
.Xr freopen 3
to one of these streams can change the file descriptor number