From 481f03ef254e745dd1a162fa26d94f5e8b676066 Mon Sep 17 00:00:00 2001 From: Christian Brauner Date: Fri, 3 Sep 2021 16:10:16 +0200 Subject: [PATCH] conf: fix includes Signed-off-by: Christian Brauner --- src/lxc/conf.c | 6 ++---- src/lxc/conf.h | 6 ++---- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/src/lxc/conf.c b/src/lxc/conf.c index 60ed9aa9e..aecd94228 100644 --- a/src/lxc/conf.c +++ b/src/lxc/conf.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 @@ -39,7 +38,6 @@ #include "caps.h" #include "cgroups/cgroup.h" #include "compiler.h" -#include "config.h" #include "confile.h" #include "confile_utils.h" #include "error.h" diff --git a/src/lxc/conf.h b/src/lxc/conf.h index 24bf1b71b..636b9017d 100644 --- a/src/lxc/conf.h +++ b/src/lxc/conf.h @@ -3,9 +3,8 @@ #ifndef __LXC_CONF_H #define __LXC_CONF_H -#ifndef _GNU_SOURCE -#define _GNU_SOURCE 1 -#endif +#include "config.h" + #include #include #include @@ -18,7 +17,6 @@ #include "attach_options.h" #include "caps.h" #include "compiler.h" -#include "config.h" #include "hlist.h" #include "list.h" #include "lxcseccomp.h"