summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorru <ru@FreeBSD.org>2001-01-12 15:46:56 +0000
committerru <ru@FreeBSD.org>2001-01-12 15:46:56 +0000
commit0a221c5a509f281ceb3cfefc7ab373177376bb58 (patch)
treeeb3ab7d18e570b8f69c22243a2ae5af193bbe5f9
parent3c313aa466d3e693d3a3334d87dcde7e7c1cca4c (diff)
downloadFreeBSD-src-0a221c5a509f281ceb3cfefc7ab373177376bb58.zip
FreeBSD-src-0a221c5a509f281ceb3cfefc7ab373177376bb58.tar.gz
mdoc(7) police: Ft/Vt now accept punctuation-type arguments.
-rw-r--r--gnu/lib/libdialog/dialog.38
-rw-r--r--lib/libc/gen/exec.32
-rw-r--r--lib/libc/gen/psignal.34
-rw-r--r--lib/libc/net/gethostbyname.32
-rw-r--r--lib/libc/stdlib/getopt.310
-rw-r--r--lib/libc/stdlib/getsubopt.32
-rw-r--r--lib/libc/stdtime/ctime.32
-rw-r--r--lib/libc/string/strerror.34
-rw-r--r--share/man/man3/end.36
-rw-r--r--share/man/man9/at_exit.92
-rw-r--r--share/man/man9/at_fork.93
-rw-r--r--share/man/man9/bios.96
-rw-r--r--share/man/man9/swi.910
13 files changed, 31 insertions, 30 deletions
diff --git a/gnu/lib/libdialog/dialog.3 b/gnu/lib/libdialog/dialog.3
index 140c4ab..876c673 100644
--- a/gnu/lib/libdialog/dialog.3
+++ b/gnu/lib/libdialog/dialog.3
@@ -326,7 +326,7 @@ should be a positive
integer representing the number of string pointer pairs to find in
.Va itptr
(which should be of type
-.Ft char "**" ),
+.Ft char "**" ) ,
the strings are
expected to be in prompt and title order for each item and the
.Va result
@@ -392,7 +392,7 @@ should be a positive
integer representing the number of string pointer tuples to find in
.Va itptr
(which should be of type
-.Ft "char **" ),
+.Ft "char **" ) ,
the strings are
expected to be in prompt, title and state ("on" or "off") order for
each item and the
@@ -408,7 +408,7 @@ integer representing the number of
structures pointed to by
.Va itptr
(which should be of type
-.Ft "dialogMenuItem *" ),
+.Ft "dialogMenuItem *" ) ,
one structure per item. In the new interface,
the
.Va result
@@ -475,7 +475,7 @@ should be a positive
integer representing the number of string pointer tuples to find in
.Va itptr
(which should be of type
-.Ft "char **" ),
+.Ft "char **" ) ,
the strings are
expected to be in prompt, title and state ("on" or "off") order for
each item and the
diff --git a/lib/libc/gen/exec.3 b/lib/libc/gen/exec.3
index 1845e82..5826804 100644
--- a/lib/libc/gen/exec.3
+++ b/lib/libc/gen/exec.3
@@ -47,7 +47,7 @@
.Lb libc
.Sh SYNOPSIS
.Fd #include <unistd.h>
-.Vt extern char **environ;
+.Vt extern char **environ ;
.Ft int
.Fn execl "const char *path" "const char *arg" ...
.Ft int
diff --git a/lib/libc/gen/psignal.3 b/lib/libc/gen/psignal.3
index ad033e3..3ea6216 100644
--- a/lib/libc/gen/psignal.3
+++ b/lib/libc/gen/psignal.3
@@ -47,8 +47,8 @@
.Fd #include <signal.h>
.Ft void
.Fn psignal "unsigned sig" "const char *s"
-.Vt extern const char * const sys_siglist[];
-.Vt extern const char * const sys_signame[];
+.Vt extern const char * const sys_siglist[] ;
+.Vt extern const char * const sys_signame[] ;
.Fd #include <string.h>
.Ft "char *"
.Fn strsignal "int sig"
diff --git a/lib/libc/net/gethostbyname.3 b/lib/libc/net/gethostbyname.3
index c26e260..3c20288 100644
--- a/lib/libc/net/gethostbyname.3
+++ b/lib/libc/net/gethostbyname.3
@@ -49,7 +49,7 @@
.Lb libc
.Sh SYNOPSIS
.Fd #include <netdb.h>
-.Vt extern int h_errno;
+.Vt extern int h_errno ;
.Ft struct hostent *
.Fn gethostbyname "const char *name"
.Ft struct hostent *
diff --git a/lib/libc/stdlib/getopt.3 b/lib/libc/stdlib/getopt.3
index f5c145f..d9d69c1 100644
--- a/lib/libc/stdlib/getopt.3
+++ b/lib/libc/stdlib/getopt.3
@@ -42,11 +42,11 @@
.Lb libc
.Sh SYNOPSIS
.Fd #include <unistd.h>
-.Vt extern char *optarg;
-.Vt extern int optind;
-.Vt extern int optopt;
-.Vt extern int opterr;
-.Vt extern int optreset;
+.Vt extern char *optarg ;
+.Vt extern int optind ;
+.Vt extern int optopt ;
+.Vt extern int opterr ;
+.Vt extern int optreset ;
.Ft int
.Fn getopt "int argc" "char * const *argv" "const char *optstring"
.Sh DESCRIPTION
diff --git a/lib/libc/stdlib/getsubopt.3 b/lib/libc/stdlib/getsubopt.3
index 1efd64e..c085a73 100644
--- a/lib/libc/stdlib/getsubopt.3
+++ b/lib/libc/stdlib/getsubopt.3
@@ -42,7 +42,7 @@
.Lb libc
.Sh SYNOPSIS
.Fd #include <unistd.h>
-.Vt extern char *suboptarg
+.Vt extern char *suboptarg ;
.Ft int
.Fn getsubopt "char **optionp" "char * const *tokens" "char **valuep"
.Sh DESCRIPTION
diff --git a/lib/libc/stdtime/ctime.3 b/lib/libc/stdtime/ctime.3
index 69cfb12..326a2c1 100644
--- a/lib/libc/stdtime/ctime.3
+++ b/lib/libc/stdtime/ctime.3
@@ -54,7 +54,7 @@
.Lb libc
.Sh SYNOPSIS
.Fd #include <time.h>
-.Vt extern char *tzname[2];
+.Vt extern char *tzname[2] ;
.Ft char *
.Fn ctime "const time_t *clock"
.Ft double
diff --git a/lib/libc/string/strerror.3 b/lib/libc/string/strerror.3
index 3149925..762f89d 100644
--- a/lib/libc/string/strerror.3
+++ b/lib/libc/string/strerror.3
@@ -51,8 +51,8 @@
.Fd #include <stdio.h>
.Ft void
.Fn perror "const char *string"
-.Vt extern const char * const sys_errlist[];
-.Vt extern const int sys_nerr;
+.Vt extern const char * const sys_errlist[] ;
+.Vt extern const int sys_nerr ;
.Fd #include <string.h>
.Ft char *
.Fn strerror "int errnum"
diff --git a/share/man/man3/end.3 b/share/man/man3/end.3
index 00a4062..42e73fe5 100644
--- a/share/man/man3/end.3
+++ b/share/man/man3/end.3
@@ -41,9 +41,9 @@
.Nm edata
.Nd end boundaries of image segments
.Sh SYNOPSIS
-.Vt extern end;
-.Vt extern etext;
-.Vt extern edata;
+.Vt extern end ;
+.Vt extern etext ;
+.Vt extern edata ;
.Sh DESCRIPTION
The globals
.Va end , etext
diff --git a/share/man/man9/at_exit.9 b/share/man/man9/at_exit.9
index 9bb0103..5c995d6 100644
--- a/share/man/man9/at_exit.9
+++ b/share/man/man9/at_exit.9
@@ -35,7 +35,7 @@
.Sh SYNOPSIS
.Fd #include <sys/types.h>
.Fd #include <sys/systm.h>
-.Ft typedef void \*(lp*exitlist_fn\*(rp \*(lpstruct proc *\*(rp;
+.Ft "typedef void" ( exitlist_fn ) ( "struct proc *" ) ;
.Pp
.Ft int
.Fn at_exit "exitlist_fn func"
diff --git a/share/man/man9/at_fork.9 b/share/man/man9/at_fork.9
index 24e7429..3e576ab 100644
--- a/share/man/man9/at_fork.9
+++ b/share/man/man9/at_fork.9
@@ -35,7 +35,8 @@
.Sh SYNOPSIS
.Fd #include <sys/types.h>
.Fd #include <sys/systm.h>
-.Ft typedef void \*(lp*forklist_fn\*(rp \*(lpstruct proc*, struct proc*, int\*(rp;
+.Ft "typedef void" ( *forklist_fn )
+.Fa ( "struct proc*" , "struct proc*" , int ) ;
.Pp
.Ft int
.Fn at_fork "forklist_fn func"
diff --git a/share/man/man9/bios.9 b/share/man/man9/bios.9
index 9929d14..193cfbd 100644
--- a/share/man/man9/bios.9
+++ b/share/man/man9/bios.9
@@ -43,9 +43,9 @@
.Fn bios32 "caddr_t entry" "struct bios32_args *args"
.Fn BIOS_PADDRTOVADDR "addr"
.Fn BIOS_VADDRTOPADDR "addr"
-.Ft extern struct bios32_SDentry PCIbios;
-.Ft extern struct SMBIOS_table SMBIOStable;
-.Ft extern struct DMI_table DMItable;
+.Vt extern struct bios32_SDentry PCIbios ;
+.Vt extern struct SMBIOS_table SMBIOStable ;
+.Vt extern struct DMI_table DMItable ;
.Sh DESCRIPTION
These functions provide a general-purpose interface for dealing with
the BIOS functions and data encountered on x86 PC-architecture systems.
diff --git a/share/man/man9/swi.9 b/share/man/man9/swi.9
index c6fe18f..4034acb 100644
--- a/share/man/man9/swi.9
+++ b/share/man/man9/swi.9
@@ -35,11 +35,11 @@
.Fd #include <sys/bus.h>
.Fd #include <sys/proc.h>
.Fd #include <sys/interrupt.h>
-.Vt "extern struct ithd *tty_ithd;"
-.Vt "extern struct ithd *clk_ithd;"
-.Vt "extern struct intrhand *net_ih;"
-.Vt "extern struct intrhand *softclock_ih;"
-.Vt "extern struct intrhand *vm_ih;"
+.Vt "extern struct ithd *tty_ithd" ;
+.Vt "extern struct ithd *clk_ithd" ;
+.Vt "extern struct intrhand *net_ih" ;
+.Vt "extern struct intrhand *softclock_ih" ;
+.Vt "extern struct intrhand *vm_ih" ;
.Ft void
.Fn sched_swi "struct intrhand *handler" "int flags"
.Ft struct intrhand *
OpenPOWER on IntegriCloud