[libc][NFC] Remove extra ; in exhaustive_test.h. (#124216)
[llvm-project.git] / lldb / test / API / functionalities / postmortem / minidump-new / linux-x86_64.cpp
blob61d31492940dbcdf9e9ee3faa19ecb97971b755b
1 void crash() {
2 volatile int *a = (int *)(nullptr);
3 *a = 1;
6 extern "C" void _start();
7 void InstallBreakpad();
9 void _start() {
10 InstallBreakpad();
11 crash();