Fix unwind info in x86 memcmp-ssse3.
[glibc.git] / elf / reldep9.c
blob51c7a8bb9ef0dff5eb8e05bb7aecf002f5849e41
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <dlfcn.h>
5 int
6 main (void)
8 void *handle = dlopen ("reldep9mod3.so", RTLD_LAZY);
9 if (handle == NULL)
11 printf ("%s\n", dlerror ());
12 exit (1);
14 dlclose (handle);
15 abort ();