blob: b1ff42f928a2f6e6841970bcb61deb051beba1e7 [file] [log] [blame]
#include <stdio.h>
#include <springbok.h>
int main(void) {
unsigned int start = springbok_ccount();
printf("%s(%d): Hello printf!\n", __FILE__, __LINE__);
unsigned int end = springbok_ccount();
return end - start;
}