mirror of
https://github.com/RPCSX/llvm.git
synced 2025-01-06 20:10:38 +00:00
8 lines
142 B
C
8 lines
142 B
C
|
void *dlclose(void*);
|
||
|
|
||
|
void ap_os_dso_unload(void *handle)
|
||
|
{
|
||
|
dlclose(handle);
|
||
|
return; /* This return triggers the bug: Wierd */
|
||
|
}
|