From: Evan Hunt Date: Tue, 20 Mar 2018 09:16:29 +0000 (+0000) Subject: add header guards in files that were missing them X-Git-Tag: v9.13.0~43^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4247477b6176e22695b3aeb1127f430cb3f878fc;p=thirdparty%2Fbind9.git add header guards in files that were missing them --- diff --git a/lib/dns/include/dns/portlist.h b/lib/dns/include/dns/portlist.h index 43fafce9806..7a30030ba4d 100644 --- a/lib/dns/include/dns/portlist.h +++ b/lib/dns/include/dns/portlist.h @@ -9,8 +9,6 @@ * information regarding copyright ownership. */ -/* $Id: portlist.h,v 1.9 2007/06/19 23:47:17 tbox Exp $ */ - /*! \file dns/portlist.h */ #include @@ -19,6 +17,9 @@ #include +#ifndef DNS_PORTLIST_H +#define DNS_PORTLIST_H 1 + ISC_LANG_BEGINDECLS isc_result_t @@ -93,3 +94,5 @@ dns_portlist_detach(dns_portlist_t **portlistp); */ ISC_LANG_ENDDECLS + +#endif /* DNS_PORTLIST_H */ diff --git a/lib/dns/include/dns/version.h b/lib/dns/include/dns/version.h index f87de6387a6..0552e81e407 100644 --- a/lib/dns/include/dns/version.h +++ b/lib/dns/include/dns/version.h @@ -9,10 +9,11 @@ * information regarding copyright ownership. */ -/* $Id: version.h,v 1.9.1234.1 2012/02/11 22:37:57 each Exp $ */ - /*! \file dns/version.h */ +#ifndef DNS_VERSION_H +#define DNS_VERSION_H 1 + #include LIBDNS_EXTERNAL_DATA extern const char dns_version[]; @@ -22,3 +23,5 @@ LIBDNS_EXTERNAL_DATA extern const char dns_mapapi[]; LIBDNS_EXTERNAL_DATA extern const unsigned int dns_libinterface; LIBDNS_EXTERNAL_DATA extern const unsigned int dns_librevision; LIBDNS_EXTERNAL_DATA extern const unsigned int dns_libage; + +#endif /* DNS_VERSION_H */