diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-12-13 14:08:44 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-12-13 14:08:44 -0800 |
commit | 0dcba8bc4ec746505cf05c37a253273fb0bcfe06 (patch) | |
tree | ee83763277612fcc2a53f3e3a7ceb466af4bf7bb /tests/hello_world_loop.cpp | |
parent | 9071942043abc0000a3fa1a68f34887657275a2c (diff) |
finish llvm opts in emcc, plus more tests
Diffstat (limited to 'tests/hello_world_loop.cpp')
-rw-r--r-- | tests/hello_world_loop.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/hello_world_loop.cpp b/tests/hello_world_loop.cpp index 3ab717e3..b9361834 100644 --- a/tests/hello_world_loop.cpp +++ b/tests/hello_world_loop.cpp @@ -4,7 +4,7 @@ extern "C" { void dump(char *s) { - puts(s); + printf("%s\n", s); } } |