xref: /netbsd-src/external/gpl3/gdb/dist/sim/testsuite/cris/c/sig3.c (revision 4b169a6ba595ae283ca507b26b15fdff40495b1c)
1 /* Check that TRT happens at an abort (3) call, single thread.
2 #xerror:
3 #output: program stopped with signal 6 (*).\n
4 */
5 
6 #include <stdlib.h>
7 #include <stdio.h>
main(void)8 int main (void)
9 {
10   abort ();
11   printf ("xyzzy\n");
12   exit (0);
13 }
14