05e10b4e11f607fc15bf46068ed32c1624738d82
[lttng-ust.git] / tests / unit / gcc-weak-hidden / d.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 *testlibfct2_int(void)
8 {
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;
20 }
This page took 0.028981 seconds and 3 git commands to generate.