mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +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 */
|
||
|
}
|