mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-12 11:29:30 +00:00
13 lines
169 B
C
13 lines
169 B
C
|
/* connector for kill */
|
||
|
|
||
|
#include <reent.h>
|
||
|
#include <signal.h>
|
||
|
|
||
|
int
|
||
|
_DEFUN (kill, (pid, sig),
|
||
|
int pid _AND
|
||
|
int sig)
|
||
|
{
|
||
|
return _kill_r (_REENT, pid, sig);
|
||
|
}
|