* src/seq.c (separator): Initialize variable.
(main): Remove unnecessary initializations.
static bool equal_width;
/* The string used to separate two numbers. */
-static char const *separator;
+static char const *separator = "\n";
/* The string output after all numbers have been output.
Usually "\n" or "\0". */
atexit (close_stdout);
- equal_width = false;
- separator = "\n";
-
/* We have to handle negative numbers in the command line but this
conflicts with the command line arguments. So explicitly check first
whether the next argument looks like a negative number. */