1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-16 10:20:30 +00: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:
Robert Drehmel 2002-10-04 11:31:00 +00:00
parent 8a349ed8fe
commit 45408a8564
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=104454
2 changed files with 4 additions and 7 deletions

View File

@ -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:

View File

@ -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