From: Duncan Mac-Vicar P. Date: Sun, 19 Jan 2014 00:21:10 +0000 (+0100) Subject: knownid.h lacks include guards X-Git-Tag: upstream/0.6.4~124^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=74600c7569065fda80cf196098417bb454473f3a;p=platform%2Fupstream%2Flibsolv.git knownid.h lacks include guards --- diff --git a/src/knownid.h b/src/knownid.h index 568f301..8772ee0 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 + +