From ff2e8f308d3862ce1927bdc20314fe7610564566 Mon Sep 17 00:00:00 2001 From: cinap_lenrek Date: Mon, 25 May 2015 13:03:45 +0200 Subject: [PATCH] thread(2): fix prototype for threadint() and threadkillgrp() (thanks qwx!) --- sys/man/2/thread | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/man/2/thread b/sys/man/2/thread index 96cf19778..90b3a6f45 100644 --- a/sys/man/2/thread +++ b/sys/man/2/thread @@ -95,10 +95,10 @@ int threadgrp(void) int threadsetgrp(int group) int threadpid(int id) .XX -int threadint(int id) +void threadint(int id) void threadintgrp(int group) void threadkill(int id) -int threadkillgrp(int group) +void threadkillgrp(int group) .XX void threadsetname(char *name, ...) char* threadgetname(void)