diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/tac.c | 6 | ||||
-rw-r--r-- | src/tail.c | 4 |
2 files changed, 5 insertions, 5 deletions
@@ -1,5 +1,5 @@ /* tac - concatenate and print files in reverse - Copyright (C) 1988-1991, 1995-2003 Free Software Foundation, Inc. + Copyright (C) 1988-1991, 1995-2004 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -118,7 +118,7 @@ static struct option const longopts[] = void usage (int status) { - if (status != 0) + if (status != EXIT_SUCCESS) fprintf (stderr, _("Try `%s --help' for more information.\n"), program_name); else @@ -144,7 +144,7 @@ Mandatory arguments to long options are mandatory for short options too.\n\ fputs (VERSION_OPTION_DESCRIPTION, stdout); printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT); } - exit (status == 0 ? EXIT_SUCCESS : EXIT_FAILURE); + exit (status); } /* Print the characters from START to PAST_END - 1. diff --git a/src/tail.c b/src/tail.c index 7e574a3eb..d5c0c31d8 100644 --- a/src/tail.c +++ b/src/tail.c @@ -230,7 +230,7 @@ static struct option const long_options[] = void usage (int status) { - if (status != 0) + if (status != EXIT_SUCCESS) fprintf (stderr, _("Try `%s --help' for more information.\n"), program_name); else @@ -303,7 +303,7 @@ recreated by some other program.\n\ "), stdout); printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT); } - exit (status == 0 ? EXIT_SUCCESS : EXIT_FAILURE); + exit (status); } static int |