Home | History | Annotate | Download | only in dlopen

Lines Matching defs:testf_dso_null

55 	int (*testf_dso_null)(void);
59 testf_dso_null = dlsym(handle, "testf_dso_null");
60 ATF_REQUIRE_MSG(testf_dso_null != NULL, "dlsym fails: %s", dlerror());
62 ATF_REQUIRE(testf_dso_null() == 0xcafe);
79 int (*testf_dso_null)(void);
87 testf_dso_null = dlsym(handle, "testf_dso_null");
88 ATF_REQUIRE_MSG(testf_dso_null != NULL, "dlsym fails: %s", dlerror());
90 ATF_REQUIRE(testf_dso_null() == 0xcafe);