aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSagar Patel <sagarmp@cs.unc.edu>2021-07-28 22:20:02 +0200
committerMichael Kerrisk <mtk.manpages@gmail.com>2021-08-08 01:02:32 +0200
commit85ac075357f80d3e7bb93b9ebf4016fd5b8c844c (patch)
tree18e1f53e448a2372ebe915dfc5c3b42b473bd2d7
parent1d32ab01fced929a656d7f25f8b16f0f4deb0fdd (diff)
downloadman-pages-85ac075357f80d3e7bb93b9ebf4016fd5b8c844c.tar.gz
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>
-rw-r--r--man2/tkill.22
1 files changed, 1 insertions, 1 deletions
diff --git a/man2/tkill.2 b/man2/tkill.2
index 6ff930e17d..6e1afcd361 100644
--- a/man2/tkill.2
+++ b/man2/tkill.2
@@ -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 :