blob: 2e46f5f3604230d5105fc08dad886435b42a3a9e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
extern void abort (void);
static max;
static void __attribute__((noinline)) storemax (int i)
{
if (i > max)
max = i;
}
static int CallFunctionRec(int (*fun)(int depth), int depth) {
if (!fun(depth)) {
return 0;
}
if (depth < 10) {
CallFunctionRec(fun, depth + 1);
}
return 1;
}
static int CallFunction(int (*fun)(int depth)) {
return CallFunctionRec(fun, 1) && !fun(0);
}
static int callback(int depth) {
storemax (depth);
return depth != 0;
}
int main() {
CallFunction(callback);
if (max != 10)
abort ();
return 0;
}
|