aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Seiler <christian@iwakd.de>2012-02-23 09:57:13 +0100
committerDaniel Lezcano <daniel.lezcano@free.fr>2012-02-23 09:57:13 +0100
commite16dad106358ae045cdcb1d86fcf3c85ca76724f (patch)
tree2040457aca67f0881f37ceaa9c8e03f4024e16d7 /src
parentAdd missing 'extern' keyword to functions defined in cgroup.h (diff)
downloadlxc-e16dad106358ae045cdcb1d86fcf3c85ca76724f.tar.gz
lxc-e16dad106358ae045cdcb1d86fcf3c85ca76724f.tar.bz2
lxc-e16dad106358ae045cdcb1d86fcf3c85ca76724f.zip
Add missing double-include #ifndef/#define/#endif to confile.h
Signed-off-by: Daniel Lezcano <dlezcano@fr.ibm.com>
Diffstat (limited to 'src')
-rw-r--r--src/lxc/confile.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/lxc/confile.h b/src/lxc/confile.h
index 6698fb2..f415e55 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