diff options
author | bde <bde@FreeBSD.org> | 1997-03-19 00:06:09 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1997-03-19 00:06:09 +0000 |
commit | 7e02e1861d154e8f78873fe6a275f391a9eb29c0 (patch) | |
tree | 5669dd451b381859c2145625742aedc043af7838 /lib/libc | |
parent | af16e6a3225066546e4977daf2f4de2967f2e795 (diff) | |
download | FreeBSD-src-7e02e1861d154e8f78873fe6a275f391a9eb29c0.zip FreeBSD-src-7e02e1861d154e8f78873fe6a275f391a9eb29c0.tar.gz |
Fixed synopsis (put all of the function (return) type info in .Ft and
none in .Fn).
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/gen/crypt.3 | 4 | ||||
-rw-r--r-- | lib/libc/sys/brk.2 | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/gen/crypt.3 b/lib/libc/gen/crypt.3 index 8e19bd9..8c09ce4 100644 --- a/lib/libc/gen/crypt.3 +++ b/lib/libc/gen/crypt.3 @@ -42,8 +42,8 @@ .Nm des_cipher .Nd DES encryption .Sh SYNOPSIS -.Ft char -.Fn *crypt "const char *key" "const char *setting" +.Ft char * +.Fn crypt "const char *key" "const char *setting" .Ft int .Fn setkey "char *key" .Ft int diff --git a/lib/libc/sys/brk.2 b/lib/libc/sys/brk.2 index df11e1f..dfc31fb 100644 --- a/lib/libc/sys/brk.2 +++ b/lib/libc/sys/brk.2 @@ -43,7 +43,7 @@ .Ft int .Fn brk "const char *addr" .Ft char * -.Fn *sbrk "int incr" +.Fn sbrk "int incr" .Sh DESCRIPTION .Bf -symbolic The brk and sbrk functions are historical curiosities |