DELTA 272343 870894 1447 SVN\ ,x:W1 #ifdef __FreeBSD__ void *dl_handle; #endif#ifdef __FreeBSD__ dl_handle = dlopen(NULL, RTLD_LAZY); strchr_fn = dlsym(dl_handle, "test_strlen"); #else strchr_fn = dlsym(dlopen(0, RTLD_LAZY), "test_strchr"); #endif#ifdef __FreeBSD__ (void)dlclose(dl_handle); #endifENDREP DELTA 272343 878189 1568 SVNH=