mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-26 05:20:30 +00:00
13 lines
99 B
C
Executable File
13 lines
99 B
C
Executable File
void
|
|
foo(int x) {
|
|
if (x&3)
|
|
foo (x-1);
|
|
}
|
|
|
|
main() {
|
|
int i;
|
|
|
|
for (i=0; i< 1024; i++)
|
|
foo(i);
|
|
}
|