(xalloc_die): New function.
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 9 Aug 2004 18:45:10 +0000 (18:45 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 9 Aug 2004 18:45:10 +0000 (18:45 +0000)
(main): Remove now-obsolete initialization of xalloc_fail_func.

src/csplit.c

index c61dc7ef915d172047d1c44ccb06c7473437e6e4..b3b1d194cc5c9c3c7a0abbcaf7814d7a4b7ea21f 100644 (file)
@@ -227,6 +227,13 @@ cleanup_fatal (void)
   exit (EXIT_FAILURE);
 }
 
+void
+xalloc_die (void)
+{
+  error (0, 0, "%s", _("memory exhausted"));
+  cleanup_fatal ();
+}
+
 static void
 interrupt_handler (int sig)
 {
@@ -1328,9 +1335,6 @@ main (int argc, char **argv)
   remove_files = true;
   prefix = DEFAULT_PREFIX;
 
-  /* Change the way xmalloc and xrealloc fail.  */
-  xalloc_fail_func = cleanup;
-
   while ((optc = getopt_long (argc, argv, "f:b:kn:sqz", longopts, NULL)) != -1)
     switch (optc)
       {