Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
0e9cb667ef49cb61b7d8ccfc187e11ec00f00920
/
.
/
Tests
/
RustMix
/
main.c
blob: 39ceba10e00b904920fdc5e5b38ff3b71aa8ff8d [
file
]
#include
<stdio.h>
extern
void
liba_greet
();
extern
void
libb_greet
();
extern
void
libc_greet
();
int
main
()
{
printf
(
"Hello from C main\n"
);
liba_greet
();
libb_greet
();
libc_greet
();
return
0
;
}