Sign in
chromium
/
external
/
github.com
/
kripken
/
emscripten
/
HEAD
/
.
/
system
/
lib
/
libc
/
compat
/
__synccall.c
blob: 50b028efbf3f15178a2b458d93e1eb518e31e65a [
file
]
// just do it, until we have full pthreads
void
__synccall
(
void
(*
func
)(
void
*),
void
*
ctx
)
{
func
(
ctx
);
}