Skip to content

Instantly share code, notes, and snippets.

@Domon
Created December 3, 2009 05:35
Show Gist options
  • Save Domon/247918 to your computer and use it in GitHub Desktop.
Save Domon/247918 to your computer and use it in GitHub Desktop.
#include <sys/types.h>
#include <signal.h>
#include <unistd.h>
int main(int argc, char **argv)
{
kill(getpid(), SIGSEGV);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment