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: 34b9f17def3fa175a49d5840e1e90c7df06c981f (plain)
1
2
3
4
5
6
7
8
9
10
11
/* connector for kill */

#include <reent.h>
#include <signal.h>

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