xref: /netbsd-src/external/gpl3/gdb/dist/sim/testsuite/cris/c/kill3.c (revision 4b169a6ba595ae283ca507b26b15fdff40495b1c)
1 /* Basic kill functionality test; suicide.
2 #xerror:
3 #output: program stopped with signal 6 (*).\n
4 */
5 
6 #include <stdio.h>
7 #include <stdlib.h>
8 #include <sys/types.h>
9 #include <signal.h>
10 int
main(void)11 main (void)
12 {
13   abort ();
14   printf ("undead\n");
15   exit (1);
16 }
17