blob: b8e0ca20677b9e0480d8faffc8829e9dfcd13990 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/*
* Unconditionally kill your parent ... BEWARE!
*/
#include <sys/types.h>
#include <unistd.h>
#include <signal.h>
int
main()
{
kill(getppid(), SIGKILL);
return(0);
}
|