Sign in
chromium
/
external
/
github.com
/
kripken
/
emscripten
/
refs/heads/multithreaded-server
/
.
/
tests
/
browser_module.cpp
blob: 85d724b5e0f941555655758be11a4dfecb23e89a [
file
] [
log
] [
blame
] [
edit
]
int
state
=
0
;
extern
"C"
{
void
one
()
{
state
++;
}
int
two
()
{
return
state
;
}
}