comparison src/sysdll.c @ 272:c5d627a313b1 r21-0b34

Import from CVS: tag r21-0b34
author cvs
date Mon, 13 Aug 2007 10:28:48 +0200
parents 966663fcf606
children 6330739388db
comparison
equal deleted inserted replaced
271:c7b7086b0a39 272:c5d627a313b1
106 } 106 }
107 return((dll_handle)hp); 107 return((dll_handle)hp);
108 } 108 }
109 109
110 int dll_close(dll_handle h) { 110 int dll_close(dll_handle h) {
111 shl_t h = *((shl_t *)hp); 111 shl_t hp = *((shl_t *)h);
112 free(hp); 112 free(hp);
113 return (shl_unload(h)); 113 return (shl_unload(h));
114 } 114 }
115 115
116 dll_func dll_function(dll_handle h,CONST char *n) { 116 dll_func dll_function(dll_handle h,CONST char *n) {