From 677bb0555a9b3b8accf1ecaa8e86d068eb679dda Mon Sep 17 00:00:00 2001 From: Ikey Doherty Date: Thu, 27 Aug 2020 17:45:45 +0100 Subject: [PATCH] partition/makefs: Include missing sys/file.h header This file must be included on non-glibc systems to ensure the `LOCK_EX` definition is available. Signed-off-by: Ikey Doherty --- src/partition/makefs.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/partition/makefs.c b/src/partition/makefs.c index 1ce6acd01e..30dcef2075 100644 --- a/src/partition/makefs.c +++ b/src/partition/makefs.c @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: LGPL-2.1+ */ #include +#include #include #include #include