newlib-cygwin/newlib/libc/syscalls/syskill.c

16 lines
210 B
C
Raw Normal View History

2000-02-18 03:39:52 +08:00
/* 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
}