2
0
mirror of git://github.com/lxc/lxc synced 2025-08-30 09:42:03 +00:00

conf: fix includes

Signed-off-by: Christian Brauner <christian.brauner@ubuntu.com>
This commit is contained in:
Christian Brauner 2021-09-03 16:10:16 +02:00
parent b4e5e90b8b
commit 481f03ef25
No known key found for this signature in database
GPG Key ID: 8EB056D53EECB12D
2 changed files with 4 additions and 8 deletions

View File

@ -1,8 +1,7 @@
/* SPDX-License-Identifier: LGPL-2.1+ */
#ifndef _GNU_SOURCE
#define _GNU_SOURCE 1
#endif
#include "config.h"
#include <arpa/inet.h>
#include <dirent.h>
#include <errno.h>
@ -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"

View File

@ -3,9 +3,8 @@
#ifndef __LXC_CONF_H
#define __LXC_CONF_H
#ifndef _GNU_SOURCE
#define _GNU_SOURCE 1
#endif
#include "config.h"
#include <linux/magic.h>
#include <net/if.h>
#include <netinet/in.h>
@ -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"