xref: /freebsd/libexec/rtld-elf/libmap.h (revision 9768746b)
1 /*
2  * $FreeBSD$
3  */
4 
5 #ifndef LIBMAP_H
6 #define	LIBMAP_H
7 
8 int	lm_init(const char *);
9 void	lm_fini(void);
10 char	*lm_find(const char *, const char *);
11 char	*lm_findn(const char *, const char *, const size_t);
12 
13 #endif
14