Sign in
chromium
/
external
/
github.com
/
kripken
/
emscripten
/
refs/heads/threadutil
/
.
/
tests
/
other
/
test_split_module.c
blob: a23e41e12893119d7d1702662ae7558efba077fc [
file
] [
log
] [
blame
] [
edit
]
#include
<stdio.h>
#include
<emscripten.h>
int
foo
()
{
return
42
;
}
EMSCRIPTEN_KEEPALIVE
void
say_hello
()
{
printf
(
"Hello! answer: %d\n"
,
foo
());
}