diff options
author | bde <bde@FreeBSD.org> | 1997-03-19 00:32:42 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1997-03-19 00:32:42 +0000 |
commit | 3d671533150c40efd34c69490e5cfb7e36788a9e (patch) | |
tree | 0a99c5798d936b773ca4c7e324af871d1c60cd0c | |
parent | 77fbf631665fba943aaf9294c01df4f1bc82a176 (diff) | |
download | FreeBSD-src-3d671533150c40efd34c69490e5cfb7e36788a9e.zip FreeBSD-src-3d671533150c40efd34c69490e5cfb7e36788a9e.tar.gz |
Fixed missing function types in synopsis.
-rw-r--r-- | lib/libc/compat-43/sigvec.2 | 1 | ||||
-rw-r--r-- | lib/libc/gen/getloadavg.3 | 1 | ||||
-rw-r--r-- | lib/libc/gen/nice.3 | 1 | ||||
-rw-r--r-- | lib/libc/net/gethostbyname.3 | 3 | ||||
-rw-r--r-- | lib/libc/sys/sigaction.2 | 1 | ||||
-rw-r--r-- | lib/libcompat/4.1/stty.3 | 2 | ||||
-rw-r--r-- | usr.sbin/pcvt/keycap/keycap.3 | 3 |
7 files changed, 12 insertions, 0 deletions
diff --git a/lib/libc/compat-43/sigvec.2 b/lib/libc/compat-43/sigvec.2 index f43a0fa..de8d452 100644 --- a/lib/libc/compat-43/sigvec.2 +++ b/lib/libc/compat-43/sigvec.2 @@ -46,6 +46,7 @@ struct sigvec { int sv_flags; }; .Ed +.Ft int .Fn sigvec "int sig" "struct sigvec *vec" "struct sigvec *ovec" .Sh DESCRIPTION .Bf -symbolic diff --git a/lib/libc/gen/getloadavg.3 b/lib/libc/gen/getloadavg.3 index e451d67..fa5b571 100644 --- a/lib/libc/gen/getloadavg.3 +++ b/lib/libc/gen/getloadavg.3 @@ -38,6 +38,7 @@ .Nm getloadavg .Nd get system load averages .Sh SYNOPSIS +.Ft int .Fn getloadavg "double loadavg[]" "int nelem" .Sh DESCRIPTION The diff --git a/lib/libc/gen/nice.3 b/lib/libc/gen/nice.3 index cbec150..8179250 100644 --- a/lib/libc/gen/nice.3 +++ b/lib/libc/gen/nice.3 @@ -38,6 +38,7 @@ .Nm nice .Nd set program scheduling priority .Sh SYNOPSIS +.Ft int .Fn nice "int incr" .Sh DESCRIPTION .Bf -symbolic diff --git a/lib/libc/net/gethostbyname.3 b/lib/libc/net/gethostbyname.3 index af5e369..32d9142 100644 --- a/lib/libc/net/gethostbyname.3 +++ b/lib/libc/net/gethostbyname.3 @@ -55,8 +55,11 @@ .Fn gethostbyaddr "const char *addr" "int len" "int type" .Ft struct hostent * .Fn gethostent void +.Ft void .Fn sethostent "int stayopen" +.Ft void .Fn endhostent void +.Ft void .Fn herror "const char *string" .Ft const char * .Fn hstrerror "int err" diff --git a/lib/libc/sys/sigaction.2 b/lib/libc/sys/sigaction.2 index 3fd68ca..eb15a11 100644 --- a/lib/libc/sys/sigaction.2 +++ b/lib/libc/sys/sigaction.2 @@ -46,6 +46,7 @@ struct sigaction { int sa_flags; /* see signal options below */ }; .Ed +.Ft int .Fn sigaction "int sig" "const struct sigaction *act" "struct sigaction *oact" .Sh DESCRIPTION The system defines a set of signals that may be delivered to a process. diff --git a/lib/libcompat/4.1/stty.3 b/lib/libcompat/4.1/stty.3 index eb3a5c8..32bb114 100644 --- a/lib/libcompat/4.1/stty.3 +++ b/lib/libcompat/4.1/stty.3 @@ -40,7 +40,9 @@ .Nd set and get terminal state (defunct) .Sh SYNOPSIS .Fd #include <sgtty.h> +.Ft int .Fn stty "int fd" "struct sgttyb *buf" +.Ft int .Fn gtty "int fd" "struct sgttyb *buf" .Sh DESCRIPTION .Bf -symbolic diff --git a/usr.sbin/pcvt/keycap/keycap.3 b/usr.sbin/pcvt/keycap/keycap.3 index 6e8fb6c..b62b427 100644 --- a/usr.sbin/pcvt/keycap/keycap.3 +++ b/usr.sbin/pcvt/keycap/keycap.3 @@ -44,8 +44,11 @@ .Nm kgetstr .Nd routines for accessing the keycap database .Sh SYNOPSIS +.Ft int .Fn kgetent "char *bp" "char *name" +.Ft int .Fn kgetnum "char *id" +.Ft int .Fn kgetflag "char *id" .Ft char * .Fn kgetstr "char *id" "char *area" |