binary B+ tree - first attempt, compiles and runs
[svn/Cll1h/.git] / demos / performance / puts.c
CommitLineData
420bb771 1#include <stdio.h>
2
3#define RUNS 10000000UL
4int main (void)
5{
06ab91f0 6 unsigned long i;
7 for (i=0;i<RUNS;i++)
8 {
9 puts("stuff");
10 }
11 return 0;
420bb771 12}
This page took 0.152687 seconds and 4 git commands to generate.