tumbledemerald-legacy/agbcc/libc/syscalls/syskill.c
2022-05-19 17:14:13 +00:00

16 lines
210 B
C

/* 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
}