mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2025-03-01 13:55:55 +00:00
13 lines
99 B
C
13 lines
99 B
C
![]() |
void
|
||
|
foo(int x) {
|
||
|
if (x&3)
|
||
|
foo (x-1);
|
||
|
}
|
||
|
|
||
|
main() {
|
||
|
int i;
|
||
|
|
||
|
for (i=0; i< 1024; i++)
|
||
|
foo(i);
|
||
|
}
|