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