Files
llvm-project/lldb/test/API/python_api/block/fn.c
John Harrison cee0703cea [lldb] Fixing the python_api/block tests. (#184647)
Renaming the file to be unique and updating the symbols for Windows.
2026-03-04 16:03:42 -08:00

9 lines
139 B
C

extern int LLDB_DYLIB_EXPORT fn(int a, int b) {
if (a < b) {
int sum = a + b;
return sum; // breakpoint 2
}
return a * b;
}