Sign in
qemu
/
qemu
/
d831c5fd868225882c5297b34a241929c267be13
/
.
/
tests
/
tcg
/
multiarch
/
system
/
hello.c
blob: 821dc0ef09f489d088b40258af28e2c1eab3df6f [
file
] [
log
] [
blame
]
/*
* Hello World, system test version
*
* We don't have the benefit of libc, just builtin C primitives and
* whatever is in minilib.
*/
#include
<minilib.h>
int
main
(
void
)
{
ml_printf
(
"Hello World\n"
);
return
0
;
}