binary B+ tree - first attempt, compiles and runs
[svn/Cll1h/.git] / demos / performance / write.c
CommitLineData
67db9ef1 1#include <string.h>
2
3#define RUNS 10000000UL
4int main (void)
5{
6 unsigned long i;
7 char *s1="stuff\n";
8 int l1=strlen(s1);
9
06ab91f0 10 for (i=0;i<RUNS;i++)
11 {
12 write(1,s1,l1);
13 }
14 return 0;
67db9ef1 15}
This page took 0.141306 seconds and 4 git commands to generate.