From: Duncan Mac-Vicar P. Date: Sun, 19 Jan 2014 00:21:10 +0000 (+0100) Subject: knownid.h lacks include guards X-Git-Tag: 0.6.4~124^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F41%2Fhead;p=thirdparty%2Flibsolv.git knownid.h lacks include guards --- diff --git a/src/knownid.h b/src/knownid.h index 568f3013..8772ee0c 100644 --- a/src/knownid.h +++ b/src/knownid.h @@ -15,6 +15,9 @@ * the ABI! */ +#ifndef LIBSOLV_KNOWNID_H +#define LIBSOLV_KNOWNID_H + #undef KNOWNID #ifdef KNOWNID_INITIALIZE # define KNOWNID(a, b) b @@ -252,3 +255,6 @@ KNOWNID(ID_NUM_INTERNAL, 0) #undef KNOWNID +#endif + +