Re: name clash between libunzip.so and zlib library
[email protected] (Paul Jarc)
| Newsgroups | gmane.comp.gnu.utils |
|---|---|
| Organization | What did you have in mind? A short, blunt, human pyramid? |
| Message-ID | <[email protected]> |
"gobigred" <[email protected]> wrote: > have to use both libraries for different purpose > both have function named as "inflate" You can use dlopen() to load the libraries and dlsym() to access a specific function within a library. Check the man pages for details. paul