* signal.cc (killpg): Correct first argument.

This commit is contained in:
Christopher Faylor
2001-02-07 23:48:09 +00:00
parent 9182099c10
commit 91d385fed3
2 changed files with 5 additions and 1 deletions

View File

@@ -239,7 +239,7 @@ kill_pgrp (pid_t pid, int sig)
}
extern "C" int
killpg (int pgrp, int sig)
killpg (pid_t pgrp, int sig)
{
return _kill (-pgrp, sig);
}