diff src/emacs.c @ 21418:8e54230531dc

(abort): Don't redefine on MSDOS.
author Karl Heuer <kwzh@gnu.org>
date Wed, 08 Apr 1998 06:50:51 +0000
parents 4b59242b8a49
children 9a81f6034063
line wrap: on
line diff
--- a/src/emacs.c	Wed Apr 08 06:50:34 1998 +0000
+++ b/src/emacs.c	Wed Apr 08 06:50:51 1998 +0000
@@ -258,13 +258,16 @@
 #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
 
 
 /* Code for dealing with Lisp access to the Unix command line */