mirror of
https://github.com/fluencelabs/musl
synced 2025-05-11 23:07:28 +00:00
12 lines
153 B
C
12 lines
153 B
C
#include <signal.h>
|
|
#include <errno.h>
|
|
|
|
int killpg(pid_t pgid, int sig)
|
|
{
|
|
if (pgid < 0) {
|
|
errno = EINVAL;
|
|
return -1;
|
|
}
|
|
return kill(-pgid, sig);
|
|
}
|