mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-19 04:49:25 +08:00
9087163804
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
12 lines
140 B
C
12 lines
140 B
C
/* connector for kill */
|
|
|
|
#include <reent.h>
|
|
#include <signal.h>
|
|
|
|
int
|
|
kill (int pid,
|
|
int sig)
|
|
{
|
|
return _kill_r (_REENT, pid, sig);
|
|
}
|