Initial revision
This commit is contained in:
8
mach/minixST/libsys/kill.c
Normal file
8
mach/minixST/libsys/kill.c
Normal file
@@ -0,0 +1,8 @@
|
||||
#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);
|
||||
}
|
||||
Reference in New Issue
Block a user