Sign in
opensecura
/
sw
/
vec
/
2b0e9fffaaa3e81444bf3d6571868190fd83a31e
/
.
/
hello_vec
/
main.c
blob: 9fff79a43314a55fe387b17eb2759705a10502b4 [
file
]
#include
<stdio.h>
#include
<springbok_intrinsics.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
;
}