# HG changeset patch # User Karl Heuer # Date 892018251 0 # Node ID 8e54230531dcdad6bc8f0d22bac0365d94146ee6 # Parent 7a310ef91b2df281e56fd58ef712cfe19a4d11bc (abort): Don't redefine on MSDOS. diff -r 7a310ef91b2d -r 8e54230531dc src/emacs.c --- 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 */