Statistics
| Branch: | Revision:

root / synthbench / euroben-ports / base / C / mod2f / prtspeed.c @ 0:839f52ef7657

History | View | Annotate | Download (226 Bytes)

1
#include <stdio.h>
2

    
3
void prtspeed( int n, double time, double mflops, int ok )
4
{
5
   printf( "%8d|  %11.4g |  %11.4g | ", n, time, mflops );
6
   if ( ok == 0 )
7
      printf( "  T   |\n" );
8
   else
9
      printf( "  F   |\n" );
10
}