]> git.eshelyaron.com Git - emacs.git/commitdiff
(abort): Don't redefine on MSDOS.
authorKarl Heuer <kwzh@gnu.org>
Wed, 8 Apr 1998 06:50:51 +0000 (06:50 +0000)
committerKarl Heuer <kwzh@gnu.org>
Wed, 8 Apr 1998 06:50:51 +0000 (06:50 +0000)
src/emacs.c

index e9fb22f7c07b913a4af7aff7d69acb9a516f104a..11a77e0890d44cd66bbe0ab86dcce4845c7d229f 100644 (file)
@@ -258,13 +258,16 @@ memory_warning_signal (sig)
 #endif
 
 /* We define abort, rather than using it from the library,
-   so that GDB can return from a breakpoint here.  */
+   so that GDB can return from a breakpoint here.
+   MSDOS has its own definition on msdos.c  */
 
+#ifndef MSDOS
 void
 abort ()
 {
   kill (getpid (), SIGABRT);
 }
+#endif
 
 \f
 /* Code for dealing with Lisp access to the Unix command line */