changeset 21418:8e54230531dc

(abort): Don't redefine on MSDOS.
author Karl Heuer <kwzh@gnu.org>
date Wed, 08 Apr 1998 06:50:51 +0000
parents 7a310ef91b2d
children 95aae2ff5fcd
files src/emacs.c
diffstat 1 files changed, 4 insertions(+), 1 deletions(-) [+]
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 */