From 449fa131d6380fb04333d28e663acb24a8fa8acc Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Wed, 24 May 2000 07:10:12 +0000 Subject: (head_file): Use STDIN_FILENO in place of `0'. (main): Likewise. --- src/head.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/head.c') diff --git a/src/head.c b/src/head.c index 44e0ab294..30dfd9905 100644 --- a/src/head.c +++ b/src/head.c @@ -192,8 +192,7 @@ head_file (const char *filename, uintmax_t n_units, int count_lines) filename = _("standard input"); if (print_headers) write_header (filename); - /* FIXME: use STDIN_FILENO, not `0' */ - return head (filename, 0, n_units, count_lines); + return head (filename, STDIN_FILENO, n_units, count_lines); } else { @@ -385,7 +384,7 @@ main (int argc, char **argv) for (; optind < argc; ++optind) exit_status |= head_file (argv[optind], n_units, count_lines); - if (have_read_stdin && close (0) < 0) + if (have_read_stdin && close (STDIN_FILENO) < 0) error (EXIT_FAILURE, errno, "-"); exit (exit_status == 0 ? EXIT_SUCCESS : EXIT_FAILURE); -- cgit v1.2.3-54-g00ecf