Update.
[platform/upstream/glibc.git] / elf / testobj3.c
1 #include <dlfcn.h>
2 #include <stdlib.h>
3
4 int
5 obj3func1 (int a __attribute__ ((unused)))
6 {
7   return 44;
8 }
9
10 int
11 obj3func2 (int a)
12 {
13   return foo (a) + 42;
14 }
15
16 int
17 preload (int a)
18 {
19   int (*fp) (int) = dlsym (RTLD_NEXT, "preload");
20   if (fp != NULL)
21     return fp (a) + 10;
22   return 10;
23 }