From: Christian Seiler Date: Thu, 23 Feb 2012 08:57:13 +0000 (+0100) Subject: Add missing double-include #ifndef/#define/#endif to confile.h X-Git-Tag: lxc-0.8.0-rc2~48 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e16dad106358ae045cdcb1d86fcf3c85ca76724f;p=thirdparty%2Flxc.git Add missing double-include #ifndef/#define/#endif to confile.h Signed-off-by: Daniel Lezcano --- diff --git a/src/lxc/confile.h b/src/lxc/confile.h index 6698fb288..f415e5505 100644 --- a/src/lxc/confile.h +++ b/src/lxc/confile.h @@ -21,6 +21,9 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +#ifndef _confile_h +#define _confile_h + struct lxc_conf; struct lxc_list; @@ -30,3 +33,5 @@ extern int lxc_config_readline(char *buffer, struct lxc_conf *conf); extern int lxc_config_define_add(struct lxc_list *defines, char* arg); extern int lxc_config_define_load(struct lxc_list *defines, struct lxc_conf *conf); + +#endif