]> git.saurik.com Git - apple/dyld.git/blame - unit-tests/test-cases/big-jump-table/pointers.c
dyld-96.2.tar.gz
[apple/dyld.git] / unit-tests / test-cases / big-jump-table / pointers.c
CommitLineData
8bc9f0af
A
1
2#include "foo.h"
3
4long 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}