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

#include <reent.h>

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