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