Sign in
chromium
/
external
/
github.com
/
kripken
/
emscripten
/
HEAD
/
.
/
test
/
test_async_exit_after_wakeup.c
blob: e4fe26267b8c8637bc8fb1024fd6a4e6bb5d777a [
file
]
#include
<stdio.h>
#include
<stdlib.h>
#include
<assert.h>
extern
int
async_func
();
int
main
()
{
int
result
=
async_func
();
assert
(
result
==
42
);
printf
(
"done\n"
);
exit
(
0
);
}