diff options
author | Christian Seiler <christian@iwakd.de> | 2012-02-23 09:57:13 +0100 |
---|---|---|
committer | Daniel Lezcano <daniel.lezcano@free.fr> | 2012-02-23 09:57:13 +0100 |
commit | e16dad106358ae045cdcb1d86fcf3c85ca76724f (patch) | |
tree | 2040457aca67f0881f37ceaa9c8e03f4024e16d7 | |
parent | Add missing 'extern' keyword to functions defined in cgroup.h (diff) | |
download | lxc-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>
-rw-r--r-- | src/lxc/confile.h | 5 |
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 |