diff options
author | ru <ru@FreeBSD.org> | 2001-01-12 15:46:56 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2001-01-12 15:46:56 +0000 |
commit | 0a221c5a509f281ceb3cfefc7ab373177376bb58 (patch) | |
tree | eb3ab7d18e570b8f69c22243a2ae5af193bbe5f9 /lib | |
parent | 3c313aa466d3e693d3a3334d87dcde7e7c1cca4c (diff) | |
download | FreeBSD-src-0a221c5a509f281ceb3cfefc7ab373177376bb58.zip FreeBSD-src-0a221c5a509f281ceb3cfefc7ab373177376bb58.tar.gz |
mdoc(7) police: Ft/Vt now accept punctuation-type arguments.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/gen/exec.3 | 2 | ||||
-rw-r--r-- | lib/libc/gen/psignal.3 | 4 | ||||
-rw-r--r-- | lib/libc/net/gethostbyname.3 | 2 | ||||
-rw-r--r-- | lib/libc/stdlib/getopt.3 | 10 | ||||
-rw-r--r-- | lib/libc/stdlib/getsubopt.3 | 2 | ||||
-rw-r--r-- | lib/libc/stdtime/ctime.3 | 2 | ||||
-rw-r--r-- | lib/libc/string/strerror.3 | 4 |
7 files changed, 13 insertions, 13 deletions
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" |