* elf32-spu.c (build_stub): Fix malloc under-allocation.
[binutils.git] / ld / testsuite / ld-elf / dl6amain.c
blob9824224661a7ffebd37ba5168f16afd20d59cc4f
1 #include <stdio.h>
2 #include <dlfcn.h>
4 int bar = -20;
6 int
7 main (void)
9 int ret = 0;
10 void *handle;
11 void (*fcn) (void);
13 handle = dlopen("./tmpdir/libdl6a.so", RTLD_GLOBAL|RTLD_LAZY);
14 if (!handle)
16 printf("dlopen ./tmpdir/libdl6a.so: %s\n", dlerror ());
17 return 1;
20 fcn = (void (*)(void)) dlsym(handle, "foo");
21 if (!fcn)
23 printf("dlsym foo: %s\n", dlerror ());
24 ret += 1;
26 else
28 (*fcn) ();
31 dlclose (handle);
32 return ret;