| 4960 | } |
| 4961 | |
| 4962 | static int dlclose(void *handle) |
| 4963 | { |
| 4964 | if (dlclose_impl == NULL) |
| 4965 | panic("dl not initialized"); |
| 4966 | return (int)dlcall((void *)dlclose_impl, handle); |
| 4967 | } |
| 4968 | |
| 4969 | /* |
| 4970 | * dlcall(f, ...) --- call SYSV ABI function f(...) |