#include #include "syscall.h" int kill(pid_t pid, int sig) { return syscall(SYS_kill, pid, sig); } #ifdef TEST int main(void) { return 0; } #endif