From: Karl Heuer Date: Wed, 8 Apr 1998 06:50:51 +0000 (+0000) Subject: (abort): Don't redefine on MSDOS. X-Git-Tag: emacs-20.3~1656 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c9fe9cce7bd35bcd657539199a59e6ab9dca9c10;p=emacs.git (abort): Don't redefine on MSDOS. --- 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 */