#include // for kill #include // for pid_t #include // for __syscall_2, syscall int kill(pid_t pid, int sig) { return syscall(kill, pid, sig); }