From bb2e3c90fcbed2d1dcdf67b59454db42fa5ff51c Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Thu, 27 Jul 2023 01:14:14 +0900 Subject: [PATCH] missing: include linux/types.h for __s64 and __u64 Fixes #28529. --- src/basic/missing_fs.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/basic/missing_fs.h b/src/basic/missing_fs.h index 411e2cb9625..9b03bbac483 100644 --- a/src/basic/missing_fs.h +++ b/src/basic/missing_fs.h @@ -1,6 +1,8 @@ /* SPDX-License-Identifier: LGPL-2.1-or-later */ #pragma once +#include + /* linux/fs.h */ #ifndef RENAME_NOREPLACE /* 0a7c3937a1f23f8cb5fc77ae01661e9968a51d0c (3.15) */ #define RENAME_NOREPLACE (1 << 0) -- 2.47.3