blob: 5ae9d6349485ff8591d900889892d8df8b271a71 [file] [log] [blame]
Chris Lattner11d11f02002-01-24 19:50:30 +00001void *dlclose(void*);
2
3void ap_os_dso_unload(void *handle)
4{
5 dlclose(handle);
6 return; /* This return triggers the bug: Wierd */
7}