mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-02 18:53:22 +00:00
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);
|
|
}
|