From: Daniel Lezcano Date: Wed, 24 Feb 2010 15:24:55 +0000 (+0100) Subject: add missing cgroup include X-Git-Tag: lxc-0.7.0~127 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6a3111b87e838561db952255a3770a1e85eb361b;p=thirdparty%2Flxc.git add missing cgroup include Fix the warning: start.c: In function ‘lxc_fini’: start.c:250: warning: implicit declaration of function ‘lxc_unlink_nsgroup’ start.c: In function ‘lxc_spawn’: start.c:380: warning: implicit declaration of function ‘lxc_rename_nsgroup’ Signed-off-by: Daniel Lezcano --- diff --git a/src/lxc/start.c b/src/lxc/start.c index d9e2d111b..395a67137 100644 --- a/src/lxc/start.c +++ b/src/lxc/start.c @@ -91,6 +91,7 @@ int signalfd(int fd, const sigset_t *mask, int flags) #include "start.h" #include "conf.h" +#include "cgroup.h" #include "log.h" #include "error.h" #include "af_unix.h"