summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1998-04-08 06:50:51 +0000
committerKarl Heuer <kwzh@gnu.org>1998-04-08 06:50:51 +0000
commitf3131443def270264b030b4169955394c0566c64 (patch)
tree53dd147680219965ae957d481bf203c9c4253663 /src
parent869214a6d698e7ac9b41566eb4ffebc25314c8a0 (diff)
downloademacs-f3131443def270264b030b4169955394c0566c64.tar.gz
(abort): Don't redefine on MSDOS.
Diffstat (limited to 'src')
-rw-r--r--src/emacs.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/emacs.c b/src/emacs.c
index e9fb22f7c07..11a77e0890d 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -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
/* Code for dealing with Lisp access to the Unix command line */