fwrite test added
[svn/Cll1h/.git] / demos / performance / printf.c
CommitLineData
420bb771 1#include <stdio.h>
2
3#define RUNS 10000000UL
4int main (void)
5{
6unsigned long i;
7for (i=0;i<RUNS;i++) {
8printf("stuff\n");
9}
10return 0;
11}
This page took 0.133123 seconds and 4 git commands to generate.