home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Fish 2
/
goldfish_vol2_cd1.bin
/
files
/
dev
/
lang
/
struct
/
speedtests
/
test2.c
< prev
next >
Wrap
C/C++ Source or Header
|
1993-08-21
|
224b
|
19 lines
;/* Execute me to compile.
sc NOSTKCHK NOSTDIO Test2.c
slink Test2.o to Test2
quit
*/
void __saveds main()
{
long z, a = 0, y;
for(y = 2000;y != 0;y--)
{
for(z = 20000;z != 0;z--)
{
a += 7;
}
}
}