• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/gdb/sim/testsuite/sim/cris/c/
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>
10int
11main (void)
12{
13  abort ();
14  printf ("undead\n");
15  exit (1);
16}
17