
/********
*	compile to "dspawn"
*	place in /bin directory
********/



#include <stdio.h>


main()	{

	if (fork() == 0)
		execv("/bin/work.exe", NULL);
	;
	;
	return(0);
}

