C<<1 va_list based print and echo commands finaly work
[svn/Cll1h/.git] / demos / performance / printf.c
diff --git a/demos/performance/printf.c b/demos/performance/printf.c
new file mode 100644 (file)
index 0000000..81844fc
--- /dev/null
@@ -0,0 +1,11 @@
+#include <stdio.h>
+
+#define RUNS 10000000UL
+int main (void)
+{
+unsigned long i;
+for (i=0;i<RUNS;i++) {
+printf("stuff\n");
+}
+return 0;
+}
This page took 0.095925 seconds and 4 git commands to generate.