1#include <stdio.h>
2
3#include "testobj.h"
4
5int
6obj6func1 (int a __attribute__ ((unused)))
7{
8 return 77;
9}
10
11int
12obj6func2 (int a)
13{
14 return foo (a) + 46;
15}
16
17int
18preload (int a)
19{
20 printf (format: "testobj6 preload\n");
21 return a;
22}
23

source code of glibc/elf/testobj6.c