From e9cab6e4a723cae8668244e014bef6abf7e14700 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 8657e500ec..feeaa4f270 100644 --- a/src/lxc/storage/aufs.h +++ b/src/lxc/storage/aufs.h @@ -26,12 +26,9 @@ #define _GNU_SOURCE #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 3d8a0419f0..44d50dd20f 100644 --- a/src/lxc/storage/overlay.h +++ b/src/lxc/storage/overlay.h @@ -25,15 +25,12 @@ #define __LXC_OVERLAY_H #include +#include #include #include #include -#if IS_BIONIC -#include <../include/lxcmntent.h> -#else -#include -#endif +#include "storage.h" struct lxc_storage;