From a3cbac329057e96c9688881a0b61d4678d915a1b Mon Sep 17 00:00:00 2001 From: Christian Brauner Date: Thu, 10 Aug 2017 23:00:12 +0200 Subject: [PATCH] android: fix includes Signed-off-by: Christian Brauner --- src/lxc/storage/aufs.h | 7 ++----- src/lxc/storage/overlay.h | 7 ++----- 2 files changed, 4 insertions(+), 10 deletions(-) diff --git a/src/lxc/storage/aufs.h b/src/lxc/storage/aufs.h index dfebbe966..7960a3a5e 100644 --- a/src/lxc/storage/aufs.h +++ b/src/lxc/storage/aufs.h @@ -26,13 +26,10 @@ #define _GNU_SOURCE #include +#include #include -#if IS_BIONIC -#include <../include/lxcmntent.h> -#else -#include -#endif +#include "storage.h" struct lxc_storage; diff --git a/src/lxc/storage/overlay.h b/src/lxc/storage/overlay.h index c2ee7bb25..0aa3cb1cc 100644 --- a/src/lxc/storage/overlay.h +++ b/src/lxc/storage/overlay.h @@ -25,16 +25,13 @@ #define __LXC_OVERLAY_H #include +#include #include #include #include #include -#if IS_BIONIC -#include <../include/lxcmntent.h> -#else -#include -#endif +#include "storage.h" struct lxc_storage; -- 2.47.2