From: Daniel Lezcano Date: Wed, 24 Feb 2010 09:57:43 +0000 (+0100) Subject: Fix header inclusion X-Git-Tag: lxc-0.7.0~134 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=872e18998b723779e1e1b36130bc28e438bd9d1e;p=thirdparty%2Flxc.git Fix header inclusion No need to include the lxc_conf structure definition, a forward declaration is enough. Signed-off-by: Daniel Lezcano --- diff --git a/src/lxc/start.h b/src/lxc/start.h index ba555621d..3816d0cb9 100644 --- a/src/lxc/start.h +++ b/src/lxc/start.h @@ -23,14 +23,14 @@ #ifndef __lxc_state_h #define __lxc_state_h -#include #include +#include -struct lxc_handler { +struct lxc_conf; +struct lxc_handler { pid_t pid; lxc_state_t state; - int sigfd; char nsgroup[MAXPATHLEN]; sigset_t oldmask;