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

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