kill.c 205 B

12345678
  1. #include "lib.h"
  2. PUBLIC int kill(proc, sig)
  3. int proc; /* which process is to be sent the signal */
  4. int sig; /* signal number */
  5. {
  6. return callm1(MM, KILL, proc, sig, 0, NIL_PTR, NIL_PTR, NIL_PTR);
  7. }