
/*****
*	mspawn.c
*	compile to mspawn
*	place in /bin
*****/

#include <stdio.h>

main()	{

	if (fork() == 0)
		execv("workmal.exe", NULL);
	;
	;
	return(0);
}
