ack/mach/minix/libsys/kill.c
1988-04-19 09:34:37 +00:00

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);
}