From d987468fdcfe2091bd5d5481ea3a1ec24b12bca7 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Wed, 1 Apr 2020 22:56:40 +0200 Subject: statx: make include conditional, fixes non-csky arch buildroot builds --- ldso/include/dl-syscall.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ldso/include/dl-syscall.h b/ldso/include/dl-syscall.h index 55688e1c1..2e8bb3630 100644 --- a/ldso/include/dl-syscall.h +++ b/ldso/include/dl-syscall.h @@ -40,6 +40,8 @@ extern int _dl_errno; #include #include +#include +#if defined __UCLIBC_HAVE_STATX__ static __always_inline void __cp_stat_statx (struct stat *to, struct statx *from) { @@ -64,6 +66,7 @@ __cp_stat_statx (struct stat *to, struct statx *from) to->st_blksize = from->stx_blksize; } #endif +#endif #define AT_NO_AUTOMOUNT 0x800 #define AT_EMPTY_PATH 0x1000 -- cgit v1.2.3