From c9fe9cce7bd35bcd657539199a59e6ab9dca9c10 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Wed, 8 Apr 1998 06:50:51 +0000 Subject: [PATCH] (abort): Don't redefine on MSDOS. --- src/emacs.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 */ -- 2.39.2