diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/emacs.c | 5 |
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 | ||
| 263 | void | 265 | void |
| 264 | abort () | 266 | abort () |
| 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 */ |