1int to_be_interrupted(int);
2
3int main() {
4 int c = 10;
5 c = to_be_interrupted(c);
6 return c;
7}
8

source code of lldb/test/API/functionalities/unwind/frameless-faulted/main.c