#include <signal.h>
#include <unistd.h>

int main()
{
    kill(getpid(), SIGSEGV);
    return 0;
}
