diff options
Diffstat (limited to 'std/stdio.c')
| -rw-r--r-- | std/stdio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/stdio.c b/std/stdio.c index d1bc69a..1a4d98c 100644 --- a/std/stdio.c +++ b/std/stdio.c @@ -8,5 +8,5 @@ char* readln() { } void print(char *str) { - puts(str); + fputs(str, stdout); } |
