Welcome to mirror list, hosted at ThFree Co, Russian Federation.

debugcrash.c « MacOSX « build « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 83f04e23eded99d254e145e102f7865810ab5748 (plain)
1
2
3
4
5
6
void debug_trigger_sigsegv()
{
	void *p = (void*)0x12345;
	*(int *)p = 0;
}