home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / tools / profiler / prf / prftest.c < prev    next >
Text File  |  1988-11-23  |  328b  |  27 lines

  1. #include <stdio.h>
  2. #include "prfifl.h"
  3. #include <dos.h>
  4. long TT()
  5. {
  6.     int i;
  7.     long j;
  8.  
  9.     for(i = 0 ; i < 16 ; i++)j += i ;
  10.     return j;
  11. }
  12. main(argc, argv)
  13. int argc;
  14. char **argv;
  15. {
  16.     long l ;
  17.     long ac = 0;
  18.  
  19.     PRFstart((long far *)main);
  20.         for (l=0;l<100000L;l++){
  21.             ac += l*l + TT();
  22.             
  23.         }
  24.     PRFstop();
  25. }
  26.  
  27.