tkill.2: tfix

Correct function signature by adding missing parenthesis.

Signed-off-by: Alejandro Colomar <alx.manpages@gmail.com>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Sagar Patel 2021-07-28 22:20:02 +02:00 committed by Michael Kerrisk
parent 1d32ab01fc
commit 85ac075357
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ tkill, tgkill \- send a signal to a thread
.PP
.B #include <signal.h>
.PP
.BI "int tgkill, pid_t " tgid ", pid_t " tid ", int " sig );
.BI "int tgkill(pid_t " tgid ", pid_t " tid ", int " sig );
.fi
.PP
.IR Note :