1a744e29feda691995db3ad64808064d53fb1486
[lttng-ust.git] / tests / unit / gcc-weak-hidden / c.c
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")));
6
7 void *testlibfct1_int(void)
8 {
9 return &testint;
10 }
11
12 void *testlibfct1_ptr(void)
13 {
14 return &testptr;
15 }
16
17 void *testlibfct1_24_bytes(void)
18 {
19 return &testsym_24_bytes;
20 }
This page took 0.02987 seconds and 3 git commands to generate.