From: Jim Meyering Date: Sat, 31 Dec 1994 18:32:47 +0000 (+0000) Subject: Include "system.h". X-Git-Tag: textutils-1_12_1~348 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=81f671740ec55999a9726526d05cce132872069a;p=thirdparty%2Fcoreutils.git Include "system.h". Don't explicitly include headers that it includes. Use error, not `fprintf (stderr'. --- diff --git a/src/seq.c b/src/seq.c index e9f59a086b..7d08d1cb5d 100644 --- a/src/seq.c +++ b/src/seq.c @@ -17,13 +17,12 @@ /* Ulrich Drepper */ -#include #include #include #include -#include -#include +#include "system.h" +#include "error.h" #include "version.h" static double scan_double_arg (); @@ -161,6 +160,7 @@ main (argc, argv) if (optind >= argc) { + /* FIXME Give reason for failure. */ usage (2); /* NOTREACHED */ } @@ -194,7 +194,7 @@ main (argc, argv) { if (!check_format (format_str)) { - fprintf (stderr, "illegal format string\n"); + error (0, 0, "invalid format string: `%s'", format_str); usage (4); } } @@ -225,7 +225,7 @@ scan_double_arg (arg) ret_val = strtod (arg, &end_ptr); if (end_ptr == arg || *end_ptr != '\0') { - fprintf (stderr, "illegal float argument: %s\n", arg); + error (0, 0, "invalid float argument: %s\n", arg); usage (2); /* NOTREACHED */ } @@ -366,7 +366,7 @@ print_numbers (format_str) { if (step >= 0) { - (void) fprintf (stderr, "illegal increment: %g\n", step); + error (0, 0, "invalid increment: %g\n", step); usage (2); /* NOTREACHED */ } @@ -386,7 +386,7 @@ print_numbers (format_str) { if (step <= 0) { - (void) fprintf (stderr, "illegal increment: %g\n", step); + error (0, 0, "invalid increment: %g\n", step); usage (2); /* NOTREACHED */ }