diff options
author | robert <robert@FreeBSD.org> | 2002-10-04 11:31:00 +0000 |
---|---|---|
committer | robert <robert@FreeBSD.org> | 2002-10-04 11:31:00 +0000 |
commit | 947e91552f68c3473629bc1764f8625bbee9af18 (patch) | |
tree | 3ba87d4813358cbbfa70b9b9506e2bd4d275c79f /lib/libc/sys/sigaction.2 | |
parent | 68c8dc8ee7ad60f28cf15f255afae72e598fe50b (diff) | |
download | FreeBSD-src-947e91552f68c3473629bc1764f8625bbee9af18.zip FreeBSD-src-947e91552f68c3473629bc1764f8625bbee9af18.tar.gz |
Correct the regressive part of my last commit to these files:
use the .Fn macro instead of the .Fo ... .Fc combination to
format function prototypes.
Reminded by: bde
Diffstat (limited to 'lib/libc/sys/sigaction.2')
-rw-r--r-- | lib/libc/sys/sigaction.2 | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/libc/sys/sigaction.2 b/lib/libc/sys/sigaction.2 index e23535a..58723b8 100644 --- a/lib/libc/sys/sigaction.2 +++ b/lib/libc/sys/sigaction.2 @@ -57,10 +57,8 @@ struct sigaction { #define sa_sigaction __sigaction_u.__sa_sigaction .Ed .Ft int -.Fo sigaction -.Fa "int sig" "const struct sigaction * restrict act" -.Fa "struct sigaction * restrict oact" -.Fc +.Fn "int sig" "const struct sigaction * restrict act" \ + "struct sigaction * restrict oact" .Sh DESCRIPTION The system defines a set of signals that may be delivered to a process. Signal delivery resembles the occurrence of a hardware interrupt: |