diff options
author | Matt Kraai <kraai@debian.org> | 2001-01-18 02:57:08 +0000 |
---|---|---|
committer | Matt Kraai <kraai@debian.org> | 2001-01-18 02:57:08 +0000 |
commit | 12f417edbd21b322a8eaa8feb0ab238f13fa83c6 (patch) | |
tree | 06f9de2e4c7d33d29a448fb1c42ed1beafe18e6e /coreutils/head.c | |
parent | c9acf8c766a9a2cc00449db5dea506d7663ad26b (diff) |
Eliminate calls of the form "fprintf(stdout,". Thanks for the idea to
Vladimir N. Oleynik.
Diffstat (limited to 'coreutils/head.c')
-rw-r--r-- | coreutils/head.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/head.c b/coreutils/head.c index 6e05eded5..a0ca453de 100644 --- a/coreutils/head.c +++ b/coreutils/head.c @@ -76,7 +76,7 @@ int head_main(int argc, char **argv) } if (fp) { if (need_headers) { - fprintf(stdout, "==> %s <==\n", argv[optind]); + printf("==> %s <==\n", argv[optind]); } head(len, fp); if (errno) { @@ -85,7 +85,7 @@ int head_main(int argc, char **argv) errno = 0; } if (optind < argc - 1) - fprintf(stdout, "\n"); + putchar('\n'); if (fp != stdin) fclose(fp); } |