]>
Commit | Line | Data |
---|---|---|
8bc9f0af A |
1 | |
2 | #include "foo.h" | |
3 | ||
4 | long useNonLazy() | |
5 | { | |
6 | long result = 0; | |
7 | result += (long)&foo001; | |
8 | result += (long)&foo002; | |
9 | result += (long)&foo003; | |
10 | #if CASE > 0 | |
11 | result += (long)&foo818; | |
12 | #endif | |
13 | #if CASE > 1 | |
14 | result += (long)&foo817; | |
15 | #endif | |
16 | #if CASE > 2 | |
17 | result += (long)&foo816; | |
18 | #endif | |
19 | #if CASE > 3 | |
20 | result += (long)&foo815; | |
21 | #endif | |
22 | return result; | |
23 | } |