diff options
Diffstat (limited to 'coreutils/env.c')
-rw-r--r-- | coreutils/env.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/env.c b/coreutils/env.c index 626fc19..8bb690b 100644 --- a/coreutils/env.c +++ b/coreutils/env.c @@ -66,7 +66,7 @@ extern int env_main(int argc, char** argv) perror_msg_and_die("%s", *argv); } for (ep = environ; *ep; ep++) - printf("%s\n", *ep); + puts(*ep); return 0; } |