diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2022-10-18 11:34:31 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2022-10-18 11:34:31 -0400 |
commit | eb47b3c51ad7e321563d70ff142f47cedf8830bc (patch) | |
tree | 59657db49d8576b87aa32e0c8a9a1c43339b7968 /src/stat.c | |
parent | 7590d382ffa4795af106cf05ab2e619e11b4cf30 (diff) | |
download | bfs-eb47b3c51ad7e321563d70ff142f47cedf8830bc.tar.xz |
stat: Check Android API level for statx() support
Bionic's <sys/stat.h> can define STATX_BASIC_STATS without declaring
statx() on lower API levels, so explicitly check for the version it was
added in.
Diffstat (limited to 'src/stat.c')
-rw-r--r-- | src/stat.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -28,7 +28,7 @@ # include <sys/param.h> #endif -#ifdef STATX_BASIC_STATS +#if defined(STATX_BASIC_STATS) && (!__ANDROID__ || __ANDROID_API__ >= 30) # define BFS_LIBC_STATX true #elif __linux__ # include <linux/stat.h> |