Sign in
nest-open-source
/
stadia-controller
/
gcc-arm-none-eabi
/
3c699435f69c74a12f5fe18c0181fba6f1dd0479
/
.
/
src
/
binutils
/
sim
/
testsuite
/
sim
/
cris
/
c
/
kill3.c
blob: c0e2179901e01eeb22958aa8a7bc3cfed2875eae [
file
] [
log
] [
blame
]
/* 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
);
}