Update.
[glibc.git] / elf / testobj5.c
blobe30ca14cdc7663e988825f642b3bc4d4617bbf7c
1 #include <dlfcn.h>
2 #include <stdlib.h>
4 int
5 obj5func1 (int a __attribute__ ((unused)))
7 return 66;
10 int
11 obj5func2 (int a)
13 return foo (a) + 44;
16 int
17 preload (int a)
19 int (*fp) (int) = dlsym (RTLD_NEXT, "preload");
20 if (fp != NULL)
21 return fp (a) + 10;
22 return 10;