_kill.c 246 B

12345678910
  1. #include <lib.h>
  2. #define kill _kill
  3. #include <signal.h>
  4. PUBLIC int kill(proc, sig)
  5. int proc; /* which process is to be sent the signal */
  6. int sig; /* signal number */
  7. {
  8. return(_callm1(MM, KILL, proc, sig, 0, NIL_PTR, NIL_PTR, NIL_PTR));
  9. }