5b08cb0449
Another handy libmap patch. Lets you do stuff like this: LD_LIBMAP="libpthread.so.1=libthr.so.1" mythreadedapp If you already have a program-specific override in libmap.conf, note that you must use a program-specific override in LD_LIBMAP: LD_LIBMAP="[mythreadedapp],libpthread.so.1=libthr.so.1" mythreadedapp PR: bin/74471 Submitted by: Dan Nelson <dnelson AT allantgroup.com> MFC after: 2 weeks
11 lines
193 B
C
11 lines
193 B
C
/*
|
|
* $FreeBSD$
|
|
*/
|
|
|
|
int lm_init (char *);
|
|
void lm_fini (void);
|
|
char * lm_find (const char *, const char *);
|
|
#ifdef COMPAT_32BIT
|
|
char * lm_findn (const char *, const char *, const int);
|
|
#endif
|