diff options
author | Alon Zakai <alonzakai@gmail.com> | 2016-07-12 15:00:26 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-12 15:00:26 -0700 |
commit | cd707e8ef504cca1e1a6a73580672af14bc40d38 (patch) | |
tree | cb45aaaaeb8754d5d14dd7ddf74c719264606901 /test/example/c-api-hello-world.c | |
parent | 8e936ce0635b66a3b2754292bab7c6c262b0bb1f (diff) | |
parent | 43ae9d622a33ca6ede829524a99bdec9f6b2bfc6 (diff) | |
download | binaryen-cd707e8ef504cca1e1a6a73580672af14bc40d38.tar.gz binaryen-cd707e8ef504cca1e1a6a73580672af14bc40d38.tar.bz2 binaryen-cd707e8ef504cca1e1a6a73580672af14bc40d38.zip |
Merge pull request #627 from WebAssembly/trace-c-api-nice
Add a tracing option to the c api
Diffstat (limited to 'test/example/c-api-hello-world.c')
-rw-r--r-- | test/example/c-api-hello-world.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/example/c-api-hello-world.c b/test/example/c-api-hello-world.c index e4a8a1cad..9117c5762 100644 --- a/test/example/c-api-hello-world.c +++ b/test/example/c-api-hello-world.c @@ -25,5 +25,7 @@ int main() { // Clean up the module, which owns all the objects we created above BinaryenModuleDispose(module); + + return 0; } |