aboutsummaryrefslogtreecommitdiffstats
path: root/test.c
blob: 84705c661e84a83ace6d2deaff07982596aee2f4 (plain) (blame)
1
2
3
4
5
6
7
8
9
#include <unistd.h>

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