/* * Unconditionally kill your parent ... BEWARE! */ #include #include #include int main() { kill(getppid(), SIGKILL); return(0); }