]> git.sur5r.net Git - cc65/blob - libsrc/common/abort.c
Remove #pragmas to switch to the RODATA segment since the compiler will do
[cc65] / libsrc / common / abort.c
1 /*
2  * abort.c
3  *
4  * Ullrich von Bassewitz, 02.06.1998
5  */
6
7
8
9 #include <stdio.h>
10 #include <stdlib.h>
11
12
13
14 void abort (void)
15 {
16     fputs ("ABNORMAL PROGRAM TERMINATION\n", stderr);
17     exit (3);
18 }
19
20
21