]> git.sur5r.net Git - cc65/blobdiff - libsrc/common/abort.c
The spans do now contain the size of a span, no longer the end offset.
[cc65] / libsrc / common / abort.c
index 6af3a59d0dbdc4cf8a792ed71b32c50a93a29241..298ff0adbd2ba1dbefbb3f9dd8ea41d39897fa3c 100644 (file)
@@ -7,12 +7,14 @@
 
 
 #include <stdio.h>
-#include <stdlib.h>
+#include <stdlib.h> 
+#include <signal.h>
 
 
 
 void abort (void)
 {
+    raise (SIGABRT);
     fputs ("ABNORMAL PROGRAM TERMINATION\n", stderr);
     exit (3);
 }