ldb speed test - needs free block dev
[tridge/junkcode.git] / t.c
1 #include <stdio.h>
2 #include <sys/types.h>
3 #include <sys/time.h>
4
5 main()
6 {
7         char buf[6] = "hello";
8         snprintf(buf, 4, "help");
9         printf("%s\n", buf);
10 }
11