home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Netware Super Library
/
Netware Super Library.iso
/
pgm_tool
/
ubmark
/
cspawn.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1990-06-10
|
190 b
|
15 lines
/*************
* compile to "cspawn"
* place in /bin directory
*************/
#include <stdio.h>
main() {
if (fork() == 0)
execv("/bin/cache.exe", NULL);
return(0);
}