about summary refs log blame commit diff
path: root/elf/testobj2.c
blob: b9c2ca8fcc2c331ce26edae1ab64a806559d2cc2 (plain) (tree)
1
2
3
4
5
                  
                   
 
                           









                                          







                                                 
#include <dlfcn.h>
#include <stdlib.h>

extern int obj1func1 (int);

int
obj2func1 (int a __attribute__ ((unused)))
{
  return 43;
}

int
obj2func2 (int a)
{
  return obj1func1 (a) + 10;
}

int
preload (int a)
{
  int (*fp) (int) = dlsym (RTLD_NEXT, "preload");
  if (fp != NULL)
    return fp (a) + 10;
  return 10;
}