11 lines
246 B
C
11 lines
246 B
C
|
#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));
|
||
|
}
|