9 lines
205 B
C
9 lines
205 B
C
#include "lib.h"
|
|
|
|
PUBLIC int kill(proc, sig)
|
|
int proc; /* which process is to be sent the signal */
|
|
int sig; /* signal number */
|
|
{
|
|
return callm1(MM, KILL, proc, sig, 0, NIL_PTR, NIL_PTR, NIL_PTR);
|
|
}
|