move c benchmarks to own directory

This commit is contained in:
Torsten Ruger
2015-11-21 14:22:53 +02:00
parent d0b655d05f
commit 9eab4b7f67
5 changed files with 0 additions and 0 deletions

9
test/bench/c/hello.c Normal file
View File

@ -0,0 +1,9 @@
#include<stdio.h>
int main(void)
{
int counter = 98304 + 1696;
while(counter--) {
printf("Hello there\n");
}
}