Welcome to mirror list, hosted at ThFree Co, Russian Federation.

syskill.c « syscalls « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fb364f51116d2b853eac1c01cf9a36cacae60e0d (plain)
1
2
3
4
5
6
7
8
9
10
11
/* connector for kill */

#include <reent.h>

int
_DEFUN (kill, (pid, sig),
     int pid _AND
     int sig)
{
  return _kill_r (_REENT, pid, sig);
}