Files
clang-p2996/lldb/test/API/tools/lldb-dap/stackTrace/main.c
Jonas Devlieghere 5717c5f385 [lldb] Re-enable TestDAP_stackTrace on Windows
It's unclear why this test has been disabled on Windows. Remove the
unistd.h header and try re-enabling it.
2025-04-24 21:45:52 -07:00

13 lines
239 B
C

#include <stdio.h>
int recurse(int x) {
if (x <= 1)
return 1; // recurse end
return recurse(x - 1) + x; // recurse call
}
int main(int argc, char const *argv[]) {
recurse(40); // recurse invocation
return 0;
}