ack/mach/minixST/libsys/_kill.c

11 lines
246 B
C
Raw Normal View History

#include <lib.h>
#define kill _kill
#include <signal.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));
}