]> git.eshelyaron.com Git - emacs.git/commitdiff
(abort): Omit this definition, if NO_ABORT.
authorRichard M. Stallman <rms@gnu.org>
Wed, 29 Apr 1998 05:02:34 +0000 (05:02 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 29 Apr 1998 05:02:34 +0000 (05:02 +0000)
End by calling exit, to avoid warning.

src/emacs.c

index 82d105a4e240483cebe3552dfd930391c1e50659..18cf9a7c2a52eb592027fb316eb8968c32fe5081 100644 (file)
@@ -267,11 +267,13 @@ memory_warning_signal (sig)
    so that GDB can return from a breakpoint here.
    MSDOS has its own definition on msdos.c  */
 
-#ifndef DOS_NT
+#if ! defined (DOS_NT) && ! defined (NO_ABORT)
 void
 abort ()
 {
   kill (getpid (), SIGABRT);
+  /* This shouldn't be executed, but it prevents a warning.  */
+  exit (1);
 }
 #endif