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