mirror of
https://github.com/opnsense/src.git
synced 2026-04-23 07:07:24 -04:00
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
This commit is contained in:
parent
8a349ed8fe
commit
45408a8564
2 changed files with 4 additions and 7 deletions
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -43,9 +43,8 @@
|
|||
.Sh SYNOPSIS
|
||||
.In signal.h
|
||||
.Ft int
|
||||
.Fo sigprocmask
|
||||
.Fa "int how" "const sigset_t * restrict set" "sigset_t * restrict oset"
|
||||
.Fc
|
||||
.Fn sigprocmask "int how" "const sigset_t * restrict set" \
|
||||
"sigset_t * restrict oset"
|
||||
.Sh DESCRIPTION
|
||||
The
|
||||
.Fn sigprocmask
|
||||
|
|
|
|||
Loading…
Reference in a new issue