From 3aed5ddb8b25af59ffe4f1d50f0d13e49a01e816 Mon Sep 17 00:00:00 2001 From: Konstantin Belousov Date: Mon, 19 Sep 2022 01:05:06 +0300 Subject: [PATCH] rtld-elf/libmap.h: add include guard Sponsored by: The FreeBSD Foundation MFC after: 1 week --- libexec/rtld-elf/libmap.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/libexec/rtld-elf/libmap.h b/libexec/rtld-elf/libmap.h index a5ba143f211..6eeed43be05 100644 --- a/libexec/rtld-elf/libmap.h +++ b/libexec/rtld-elf/libmap.h @@ -2,7 +2,12 @@ * $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