blob: 2c2d60321d18f69d8b39e001f78dba280d8a2732 [file] [log] [blame]
Wichert Akkermanfaf72222000-02-19 23:59:03 +00001main()
2{
3 if (vfork() == 0)
4 write(1, "child\n", 6);
5 else {
6 wait(0);
7 write(1, "parent\n", 7);
8 }
9 exit(0);
10}