diff options
Diffstat (limited to 'software/hello')
-rw-r--r-- | software/hello/hello.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/software/hello/hello.c b/software/hello/hello.c index 85c5d87..befc6ee 100644 --- a/software/hello/hello.c +++ b/software/hello/hello.c @@ -2,7 +2,7 @@ int main() { - printf("hello world!\n"); + puts("hello world!\n"); return 0; } |