diff options
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); } } |