Sign in
chromium
/
external
/
github.com
/
kripken
/
emscripten
/
HEAD
/
.
/
test
/
other
/
embind_tsgen_bigint.cpp
blob: 87ed0cc1a8a205a1fa7a80e94f5d3c633d76e641 [
file
]
#include
<emscripten/bind.h>
#include
<emscripten/val.h>
using
namespace
emscripten
;
uint64_t
bigint_fn
(
int64_t
)
{
return
0
;
}
EMSCRIPTEN_BINDINGS
(
Test
)
{
function
(
"bigintFn"
,
&
bigint_fn
);
}