blob: 61d31492940dbcdf9e9ee3faa19ecb97971b755b [file] [log] [blame]
void crash() {
volatile int *a = (int *)(nullptr);
*a = 1;
}
extern "C" void _start();
void InstallBreakpad();
void _start() {
InstallBreakpad();
crash();
}