blob: 6b064e782a90f132f050dab3f2c487e8addaa5a0 [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)
{
kill (getpid (), SIGABRT);
printf ("undead\n");
exit (1);
}