aboutsummaryrefslogtreecommitdiff
path: root/tests/hello_world_loop.cpp
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2011-12-13 14:08:44 -0800
committerAlon Zakai <alonzakai@gmail.com>2011-12-13 14:08:44 -0800
commit0dcba8bc4ec746505cf05c37a253273fb0bcfe06 (patch)
treeee83763277612fcc2a53f3e3a7ceb466af4bf7bb /tests/hello_world_loop.cpp
parent9071942043abc0000a3fa1a68f34887657275a2c (diff)
finish llvm opts in emcc, plus more tests
Diffstat (limited to 'tests/hello_world_loop.cpp')
-rw-r--r--tests/hello_world_loop.cpp2
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);
}
}