]> git.ipfire.org Git - thirdparty/lxc.git/commitdiff
Add missing double-include #ifndef/#define/#endif to confile.h
authorChristian Seiler <christian@iwakd.de>
Thu, 23 Feb 2012 08:57:13 +0000 (09:57 +0100)
committerDaniel Lezcano <daniel.lezcano@free.fr>
Thu, 23 Feb 2012 08:57:13 +0000 (09:57 +0100)
Signed-off-by: Daniel Lezcano <dlezcano@fr.ibm.com>
src/lxc/confile.h

index 6698fb288b6f9fbe131ab8d5773f1ffdd18f1ed1..f415e550598369ca2ae4de2fafdd0a73e95372a6 100644 (file)
@@ -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