summaryrefslogtreecommitdiff
path: root/sim/testsuite/sim/cris/c/kill3.c
blob: b70f3d324dc8e43d3cf37278b8a9cfa188abd772 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* Basic kill functionality test; suicide.
#xerror:
#output: program stopped with signal 6.\n
*/

#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <signal.h>
int
main (void)
{
  abort ();
  printf ("undead\n");
  exit (1);
}