No longer include assert.h.
(process_line_count): Remove invalid assertion.
#include <config.h>
#include <stdio.h>
-#include <assert.h>
#include <getopt.h>
#include <sys/types.h>
#include <signal.h>
linenum = get_first_line_in_buffer ();
- /* Initially, I wanted to assert linenum < last_line_to_save, but that
- condition is false for the valid command: echo | csplit - 1 '{*}'.
- So, relax it just a little. */
- assert ((linenum == 1 && last_line_to_save == 1)
- || linenum < last_line_to_save);
-
while (linenum++ < last_line_to_save)
{
line = remove_line ();