Files
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

12 lines
229 B
C

#include <stdio.h>
extern LLDB_DYLIB_IMPORT int fn(int a, int b);
int main(int argc, char const *argv[]) {
int a = 3;
int b = 17;
int sum = fn(a, b); // breakpoint 1
printf("fn(3, 17) returns %d\n", sum);
return 0;
}