Commit | Line | Data |
---|---|---|
cd33a48b MD |
1 | int testint __attribute__((weak, visibility("hidden"))); |
2 | void *testptr __attribute__((weak, visibility("hidden"))); | |
3 | struct { | |
4 | char a[24]; | |
5 | } testsym_24_bytes __attribute__((weak, visibility("hidden"))); | |
73de71c3 | 6 | |
cd33a48b | 7 | void *testlibfct2_int(void) |
73de71c3 | 8 | { |
cd33a48b MD |
9 | return &testint; |
10 | } | |
11 | ||
12 | void *testlibfct2_ptr(void) | |
13 | { | |
14 | return &testptr; | |
15 | } | |
16 | ||
17 | void *testlibfct2_24_bytes(void) | |
18 | { | |
19 | return &testsym_24_bytes; | |
73de71c3 | 20 | } |