Sign in
chromium
/
external
/
github.com
/
kripken
/
emscripten
/
refs/heads/remove-dynamic-alloc
/
.
/
tests
/
cmake
/
target_js
/
main.cpp
blob: 5aff9d20b591e7299c2eb0570b750b8fee1a1d52 [
file
] [
edit
]
extern
"C"
{
void
lib_function
();
void
lib_function2
();
}
int
cpp_library_function
();
int
main
()
{
lib_function
();
lib_function2
();
cpp_library_function
();
}