%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /glibc-2.29/elf/
Upload File :
Create Path :
Current File : //glibc-2.29/elf/unload6.c

#include <dlfcn.h>
#include <stdio.h>

int
main (void)
{
  void *h = dlopen ("unload6mod1.so", RTLD_LAZY);
  if (h == NULL)
    {
      puts ("dlopen unload6mod1.so failed");
      return 1;
    }

  int (*fn) (int);
  fn = dlsym (h, "foo");
  if (fn == NULL)
    {
      puts ("dlsym failed");
      return 1;
    }

  int val = fn (16);
  if (val != 24)
    {
      printf ("foo returned %d != 24\n", val);
      return 1;
    }

  return 0;
}

Zerion Mini Shell 1.0