binary B+ tree - first attempt, compiles and runs
[svn/Cll1h/.git] / demos / performance / write.c
... / ...
CommitLineData
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
10 for (i=0;i<RUNS;i++)
11 {
12 write(1,s1,l1);
13 }
14 return 0;
15}
This page took 0.12549 seconds and 4 git commands to generate.