home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 2 / goldfish_vol2_cd1.bin / files / dev / lang / struct / speedtests / test4.c < prev    next >
C/C++ Source or Header  |  1993-08-21  |  192b  |  18 lines

  1. ;/* Execute me to compile.
  2. sc NOSTKCHK NOSTDIO Test4.c
  3. slink Test4.o to Test4
  4. quit
  5. */
  6.  
  7. void __saveds main()
  8. {
  9.   long z = 0, a = 0;
  10.  
  11.   do
  12.   {
  13.     a += 7;
  14.     z++;
  15.   } while (z <= 20000000);
  16.  
  17. }
  18.