[Utils] Identity map module-level debug info on first use in CloneFunction* (#118627)
[llvm-project.git] / lldb / test / API / functionalities / process_crash_info / main.c
blob9ed467f8e70f3eccea822af84a60b51455cd5cd3
1 #include <stdlib.h>
3 int main() {
4 int *var = malloc(sizeof(int)); // break here
5 free(var);
6 free(var);
7 return 0;