Hi,
 
I used uclibc-0.9.29,
 
/*dltest.c*/
> #include <stdio.h>
> #include <dlfcn.h>
>
> #define MYLIB "/flash/lib/libdev.so"
>
> int main (void){
>   void *handle;
>   while (1){
>       handle = dlopen (MYLIB, RTLD_LAZY);
>       if (!handle){
>           fputs (dlerror(), stderr);
>           exit (1);
>         }
>       dlclose (handle);
>     }
> }
/*dltest.c*/
 
Pls comment,
Thanks,
czy

 

_________________________________________________________________
MSN 表情魔法书,改变你的对话时代!
http://im.live.cn/emoticons/
_______________________________________________
uClibc mailing list
uClibc@uclibc.org
http://lists.busybox.net/mailman/listinfo/uclibc

Reply via email to