// Reversed to C from pariendo.s (ASM)
// nitrous
#include<stdio.h>

main(){
	write(1, "Crash the system?(y/n): ", 24);

	int esp, eax;
	char cl;

	read(1, &esp, 4);
	cl = (char) esp;

	if(cl == 'y' || cl == 'Y')
		goto fuck_l00p;
	goto g00d_bye;

fuck_l00p:
	if((eax = fork()) == 0)
		goto childmsg;
	goto fuck_l00p;

g00d_bye:
	exit(0);

childmsg:
	write(1, "I'm a child !\n", 14);
	goto fuck_l00p;
}
