Files
clang-p2996/lldb/test/API/commands/gui/basicdebug/func.c
2022-04-05 08:29:13 +02:00

13 lines
161 B
C

int func() {
return 1; // In function
}
void func_down() {
int dummy = 1; // In func_down
(void)dummy;
}
void func_up() {
func_down(); // In func_up
}