Sign in
opensecura
/
sw
/
vec
/
816fb967ce94540b2d2fdcc692e384673fe6f51b
/
.
/
hello_vec
/
main.c
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
;
}