From 14cfc17935f19349f31414739dacdf86c8451df6 Mon Sep 17 00:00:00 2001 From: Christian Brauner Date: Fri, 3 Sep 2021 16:13:12 +0200 Subject: [PATCH] tools/lxc_start: fix includes Signed-off-by: Christian Brauner --- src/lxc/tools/lxc_start.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/lxc/tools/lxc_start.c b/src/lxc/tools/lxc_start.c index 459b86793..f3c990783 100644 --- a/src/lxc/tools/lxc_start.c +++ b/src/lxc/tools/lxc_start.c @@ -1,8 +1,7 @@ /* SPDX-License-Identifier: LGPL-2.1+ */ -#ifndef _GNU_SOURCE -#define _GNU_SOURCE 1 -#endif +#include "config.h" + #include #include #include @@ -20,11 +19,11 @@ #include #include -#include +#include "lxccontainer.h" +#include "attach_options.h" #include "arguments.h" #include "caps.h" -#include "config.h" #include "confile.h" #include "log.h" -- 2.47.2