freebsd-dev/libexec/rtld-elf/libmap.h
Konstantin Belousov 3aed5ddb8b rtld-elf/libmap.h: add include guard
Sponsored by:	The FreeBSD Foundation
MFC after:	1 week
2022-09-19 01:49:41 +03:00

14 lines
217 B
C

/*
* $FreeBSD$
*/
#ifndef LIBMAP_H
#define LIBMAP_H
int lm_init(const char *);
void lm_fini (void);
char * lm_find (const char *, const char *);
char * lm_findn (const char *, const char *, const size_t);
#endif