1 2 3 4 5 6 7
#include <signal.h> #include "syscall.h" int kill(pid_t pid, int sig) { return syscall(SYS_kill, pid, sig); }