1999-04-16 01:35:26 +00:00
|
|
|
/* Trivial code used to test watchpoints in recursive code and
|
|
|
|
auto-deletion of watchpoints as they go out of scope. */
|
|
|
|
|
1999-06-28 16:06:02 +00:00
|
|
|
static int
|
|
|
|
recurse (int a)
|
1999-04-16 01:35:26 +00:00
|
|
|
{
|
|
|
|
int b = 0;
|
|
|
|
|
|
|
|
if (a == 1)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
b = a;
|
|
|
|
b *= recurse (a - 1);
|
|
|
|
return b;
|
|
|
|
}
|
|
|
|
|
1999-06-28 16:06:02 +00:00
|
|
|
int main()
|
1999-04-16 01:35:26 +00:00
|
|
|
{
|
|
|
|
recurse (10);
|
1999-06-28 16:06:02 +00:00
|
|
|
return 0;
|
1999-04-16 01:35:26 +00:00
|
|
|
}
|