aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1998-04-08 06:50:51 +0000
committerKarl Heuer1998-04-08 06:50:51 +0000
commitc9fe9cce7bd35bcd657539199a59e6ab9dca9c10 (patch)
tree9d4f1d0ad57c9f267c9598b2edca19cab77178b4 /src
parenta63f12f992703d509ebdfd2b6ac2372e4de9d279 (diff)
downloademacs-c9fe9cce7bd35bcd657539199a59e6ab9dca9c10.tar.gz
emacs-c9fe9cce7bd35bcd657539199a59e6ab9dca9c10.zip
(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)
258#endif 258#endif
259 259
260/* We define abort, rather than using it from the library, 260/* We define abort, rather than using it from the library,
261 so that GDB can return from a breakpoint here. */ 261 so that GDB can return from a breakpoint here.
262 MSDOS has its own definition on msdos.c */
262 263
264#ifndef MSDOS
263void 265void
264abort () 266abort ()
265{ 267{
266 kill (getpid (), SIGABRT); 268 kill (getpid (), SIGABRT);
267} 269}
270#endif
268 271
269 272
270/* Code for dealing with Lisp access to the Unix command line */ 273/* Code for dealing with Lisp access to the Unix command line */