Sign in
chromium
/
external
/
github.com
/
kripken
/
emscripten
/
d774118579942e0bba1966a47b671115cdbcff73
/
.
/
tests
/
hello_function_export.cpp
blob: 9ea8edac9b07e7949931292f062143b50b907e3a [
file
]
#include
<emscripten.h>
#include
<math.h>
extern
"C"
{
EMSCRIPTEN_EXPORT
int
int_sqrt
(
int
x
)
{
return
sqrt
(
x
);
}
}