llvm-project/lldb/test/API/functionalities/breakpoint/breakpoint_options/main.cpp

5 lines
112 B
C++

extern "C" int foo(void);
int main (int argc, char **argv) { // Set break point at this line.
return foo();
}