a61fdf0a A |
1 | |
2 | |
3 | |
4 | extern int foo; |
5 | |
6 | int getfoo() { return foo; } |
7 | |
8 | |
9 | extern int other; |
10 | |
11 | int getother() { return other; } |
12 | |
55e3d2f6 A |
13 | |
14 | extern int tent; |
15 | |
16 | int gettent() { return tent; } |
17 | |
a645023d A |
18 | |
19 | extern void* func; |
20 | void* getfunc() { return func; } |