Minix1.5/lib/posix/kill.c

Compare this file to the similar file:
Show the results in this format:

#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));
}