12 handle
= dlopen ("modstatic.so", RTLD_LAZY
);
15 printf ("%s\n", dlerror ());
19 test
= dlsym (handle
, "test");
22 printf ("%s\n", dlerror ());
29 printf ("Got %i, expected 4\n", res
);
37 #define TEST_FUNCTION do_test ()
38 #include "../test-skeleton.c"