Sign in
chromium
/
external
/
github.com
/
kripken
/
emscripten
/
refs/heads/splitbrowser
/
.
/
tests
/
other
/
test_legacy_runtime.c
blob: 0a19fcc0b3de87756866426e20a8a8fb07fe6e8e [
file
] [
edit
]
#include
<stdio.h>
#include
<emscripten/em_asm.h>
int
main
()
{
intptr_t
addr
=
EM_ASM_INT
({
return
allocate
(
intArrayFromString
(
"hello from js"
),
ALLOC_NORMAL
);
});
printf
(
"%s\n"
,
(
char
*)
addr
);
return
0
;
}