summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorru <ru@FreeBSD.org>2001-08-08 11:48:28 +0000
committerru <ru@FreeBSD.org>2001-08-08 11:48:28 +0000
commit6787c701a8230014e296d1e65c8b4733ddf84f84 (patch)
treef029a640ea1451d65719cafec9eae942a7d4b0ac /lib
parentcac152301a43f148900fda9996229f20901ba6ba (diff)
downloadFreeBSD-src-6787c701a8230014e296d1e65c8b4733ddf84f84.zip
FreeBSD-src-6787c701a8230014e296d1e65c8b4733ddf84f84.tar.gz
mdoc(7) police: expand plain text xrefs.
Diffstat (limited to 'lib')
-rw-r--r--lib/libc/compat-43/sigvec.23
-rw-r--r--lib/libc/gen/alarm.33
-rw-r--r--lib/libc/gen/fmtcheck.34
-rw-r--r--lib/libc/gen/nice.33
-rw-r--r--lib/libc/gen/ualarm.33
-rw-r--r--lib/libc/gen/utime.33
-rw-r--r--lib/libc/gen/valloc.35
-rw-r--r--lib/libc/stdlib/malloc.35
-rw-r--r--lib/libc/stdlib/rand.33
-rw-r--r--lib/libc/string/strtok.33
-rw-r--r--lib/libcompat/4.1/ftime.33
-rw-r--r--lib/libcompat/4.1/getpw.35
-rw-r--r--lib/libcompat/4.1/stty.33
13 files changed, 33 insertions, 13 deletions
diff --git a/lib/libc/compat-43/sigvec.2 b/lib/libc/compat-43/sigvec.2
index eb94904..841d37a 100644
--- a/lib/libc/compat-43/sigvec.2
+++ b/lib/libc/compat-43/sigvec.2
@@ -53,7 +53,8 @@ struct sigvec {
.Fn sigvec "int sig" "struct sigvec *vec" "struct sigvec *ovec"
.Sh DESCRIPTION
.Bf -symbolic
-This interface is made obsolete by sigaction(2).
+This interface is made obsolete by
+.Xr sigaction 2 .
.Ef
.Pp
The system defines a set of signals that may be delivered to a process.
diff --git a/lib/libc/gen/alarm.3 b/lib/libc/gen/alarm.3
index 4157f26..94f0590 100644
--- a/lib/libc/gen/alarm.3
+++ b/lib/libc/gen/alarm.3
@@ -46,7 +46,8 @@
.Fn alarm "unsigned int seconds"
.Sh DESCRIPTION
.Bf -symbolic
-This interface is made obsolete by setitimer(2).
+This interface is made obsolete by
+.Xr setitimer 2 .
.Ef
.Pp
The
diff --git a/lib/libc/gen/fmtcheck.3 b/lib/libc/gen/fmtcheck.3
index f8a7eb9..972f0a8 100644
--- a/lib/libc/gen/fmtcheck.3
+++ b/lib/libc/gen/fmtcheck.3
@@ -37,7 +37,9 @@
.Dt FMTCHECK 3
.Sh NAME
.Nm fmtcheck
-.Nd sanitizes user-supplied printf(3)-style format string
+.Nd sanitizes user-supplied
+.Xr printf 3 Ns -style
+format string
.Sh LIBRARY
.Lb libc
.Sh SYNOPSIS
diff --git a/lib/libc/gen/nice.3 b/lib/libc/gen/nice.3
index 1fb7eb2..38bd053 100644
--- a/lib/libc/gen/nice.3
+++ b/lib/libc/gen/nice.3
@@ -46,7 +46,8 @@
.Fn nice "int incr"
.Sh DESCRIPTION
.Bf -symbolic
-This interface is obsoleted by setpriority(2).
+This interface is obsoleted by
+.Xr setpriority 2 .
.Ef
.Pp
The
diff --git a/lib/libc/gen/ualarm.3 b/lib/libc/gen/ualarm.3
index 137212e..f2b269c 100644
--- a/lib/libc/gen/ualarm.3
+++ b/lib/libc/gen/ualarm.3
@@ -46,7 +46,8 @@
.Fn ualarm "u_int microseconds" "u_int interval"
.Sh DESCRIPTION
.Bf -symbolic
-This is a simplified interface to setitimer(2).
+This is a simplified interface to
+.Xr setitimer 2 .
.Ef
.Pp
The
diff --git a/lib/libc/gen/utime.3 b/lib/libc/gen/utime.3
index 87fa93c..a14eea3 100644
--- a/lib/libc/gen/utime.3
+++ b/lib/libc/gen/utime.3
@@ -47,7 +47,8 @@
.Fn utime "const char *file" "const struct utimbuf *timep"
.Sh DESCRIPTION
.Bf -symbolic
-This interface is obsoleted by utimes(2) .
+This interface is obsoleted by
+.Xr utimes 2 .
.Ef
.Pp
The
diff --git a/lib/libc/gen/valloc.3 b/lib/libc/gen/valloc.3
index 00e4beb..b15847f 100644
--- a/lib/libc/gen/valloc.3
+++ b/lib/libc/gen/valloc.3
@@ -46,7 +46,10 @@
.Fn valloc "size_t size"
.Sh DESCRIPTION
.Bf -symbolic
-Valloc is obsoleted by the current version of malloc(3),
+The
+.Fn valloc
+function is obsoleted by the current version of
+.Xr malloc 3 ,
which aligns page-sized and larger allocations.
.Ef
.Pp
diff --git a/lib/libc/stdlib/malloc.3 b/lib/libc/stdlib/malloc.3
index 67e84e9..43ce4e3 100644
--- a/lib/libc/stdlib/malloc.3
+++ b/lib/libc/stdlib/malloc.3
@@ -395,7 +395,10 @@ The allocation functions were compiled with
.Dq EXTRA_SANITY
defined, and an error was found during the additional error checking.
Consult the source code for further information.
-.It "mmap(2) failed, check limits
+.It Xo
+.Xr mmap 2
+failed, check limits
+.Xc
This most likely means that the system is dangerously overloaded or that
the process' limits are incorrectly specified.
.It "freelist is destroyed
diff --git a/lib/libc/stdlib/rand.3 b/lib/libc/stdlib/rand.3
index d9c7b54..bc3bff0 100644
--- a/lib/libc/stdlib/rand.3
+++ b/lib/libc/stdlib/rand.3
@@ -59,7 +59,8 @@
.Fn rand_r "unsigned *ctx"
.Sh DESCRIPTION
.Bf -symbolic
-These interfaces are obsoleted by random(3).
+These interfaces are obsoleted by
+.Xr random 3 .
.Ef
.Pp
The
diff --git a/lib/libc/string/strtok.3 b/lib/libc/string/strtok.3
index 6ad05cc..814cee5 100644
--- a/lib/libc/string/strtok.3
+++ b/lib/libc/string/strtok.3
@@ -66,7 +66,8 @@
.Fn strtok_r "char *str" "const char *sep" "char **last"
.Sh DESCRIPTION
.Bf -symbolic
-This interface is obsoleted by strsep(3).
+This interface is obsoleted by
+.Xr strsep 3 .
.Ef
.Pp
The
diff --git a/lib/libcompat/4.1/ftime.3 b/lib/libcompat/4.1/ftime.3
index 63da0ce8..2642387 100644
--- a/lib/libcompat/4.1/ftime.3
+++ b/lib/libcompat/4.1/ftime.3
@@ -47,7 +47,8 @@
.Fn ftime "struct timeb *tp"
.Sh DESCRIPTION
.Bf -symbolic
-This interface is obsoleted by gettimeofday(2).
+This interface is obsoleted by
+.Xr gettimeofday 2 .
.Ef
.Pp
The
diff --git a/lib/libcompat/4.1/getpw.3 b/lib/libcompat/4.1/getpw.3
index 618da44..f1a57c5 100644
--- a/lib/libcompat/4.1/getpw.3
+++ b/lib/libcompat/4.1/getpw.3
@@ -46,7 +46,10 @@
.Fn getpw "uid_t uid" "char *buf"
.Sh DESCRIPTION
.Bf -symbolic
-The getpw function is made obsolete by getpwuid(3).
+The
+.Fn getpw
+function is made obsolete by
+.Xr getpwuid 3 .
.Ef
.Pp
The
diff --git a/lib/libcompat/4.1/stty.3 b/lib/libcompat/4.1/stty.3
index dddb93c2..a1f89d1 100644
--- a/lib/libcompat/4.1/stty.3
+++ b/lib/libcompat/4.1/stty.3
@@ -49,7 +49,8 @@
.Fn gtty "int fd" "struct sgttyb *buf"
.Sh DESCRIPTION
.Bf -symbolic
-These interfaces are obsoleted by ioctl(2).
+These interfaces are obsoleted by
+.Xr ioctl 2 .
.Ef
.Pp
The
OpenPOWER on IntegriCloud