1 /* Public domain. */
2 
3 #include <sys/types.h>
4 #include <sys/wait.h>
5 
main()6 main()
7 {
8   waitpid(0,0,0);
9 }
10