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 /lib/libc | |
parent | 77fbf631665fba943aaf9294c01df4f1bc82a176 (diff) | |
download | FreeBSD-src-3d671533150c40efd34c69490e5cfb7e36788a9e.zip FreeBSD-src-3d671533150c40efd34c69490e5cfb7e36788a9e.tar.gz |
Fixed missing function types in synopsis.
Diffstat (limited to 'lib/libc')
-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 |
5 files changed, 7 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. |