index
:
emscripten
master
push-upstream
Emscripten: An LLVM-to-JavaScript Compiler
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
tests
/
hello_function.cpp
blob: 6037109e2df6fcbf34bb7fc99ab3b4ed95f5e01b (
plain
)
1
2
3
4
5
6
7
8
9
10
11
#include
<math.h>
extern
"C"
{
int
int_sqrt
(
int
x
)
{
return
sqrt
(
x
);
}
}