From: Matthias Maennich Date: Tue, 9 Jul 2019 08:22:22 +0000 (+0100) Subject: abg-tools-utils: add missing header include guards X-Git-Tag: upstream/1.7~66 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=85f185a68415bc3e71f1f99a04fa62ab43b053d5;p=platform%2Fupstream%2Flibabigail.git abg-tools-utils: add missing header include guards * include/abg-tools-utils.h: add header include guards Signed-off-by: Matthias Maennich --- diff --git a/include/abg-tools-utils.h b/include/abg-tools-utils.h index a63f4db9..4d35d53a 100644 --- a/include/abg-tools-utils.h +++ b/include/abg-tools-utils.h @@ -20,6 +20,9 @@ ///@file +#ifndef __ABG_TOOLS_UTILS_H +#define __ABG_TOOLS_UTILS_H + #include #include #include @@ -304,3 +307,5 @@ build_corpus_group_from_kernel_dist_under(const string& root, abort(); \ } while (false) }//end namespace abigail + +#endif //__ABG_TOOLS_UTILS_H