Esempio n. 1
0
int dlclose(void * handle) {
    if(handle) {
        int d = (int )(*(int*)handle);
        int ret = __dlclose(d);
        free(handle);
        return ret;
    }
    return -1;
}
Esempio n. 2
0
/* dlclose */
int dlclose(void * handle)
{
	return __dlclose(handle);
}