blob: 51c7a8bb9ef0dff5eb8e05bb7aecf002f5849e41 [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001#include <stdio.h>
2#include <stdlib.h>
3#include <dlfcn.h>
4
5int
6main (void)
7{
8 void *handle = dlopen ("reldep9mod3.so", RTLD_LAZY);
9 if (handle == NULL)
10 {
11 printf ("%s\n", dlerror ());
12 exit (1);
13 }
14 dlclose (handle);
15 abort ();
16}