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: 4ee2f64df0736692b386d331cf64201580836a8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* connector for kill */

#include <reent.h>

int
kill (pid, sig)
     int pid;
     int sig;
{
#ifdef REENTRANT_SYSCALLS_PROVIDED
  return _kill_r (_REENT, pid, sig);
#else
  return _kill (pid, sig);
#endif
}