summaryrefslogtreecommitdiffstats
path: root/src/stat.h
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2024-08-27 16:23:47 -0400
committerTavian Barnes <tavianator@tavianator.com>2024-08-28 17:33:20 -0400
commit4890e2754c238c51497a19b67fb2458ef108f558 (patch)
tree1e590b06485b206a7c96c044fbb393b4df73498e /src/stat.h
parent49e8620fe191da4fabc79896d05d56cb531ed673 (diff)
downloadbfs-4890e2754c238c51497a19b67fb2458ef108f558.tar.xz
prelude: Rely more on __has_include()
Rather than a bunch of manual fallback macros, just provide a fallback definition that returns false.
Diffstat (limited to 'src/stat.h')
-rw-r--r--src/stat.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stat.h b/src/stat.h
index 8d7144d..6a8c3f5 100644
--- a/src/stat.h
+++ b/src/stat.h
@@ -25,7 +25,7 @@
# define BFS_USE_STATX (BFS_HAS_STATX || BFS_HAS_STATX_SYSCALL)
#endif
-#if BFS_USE_SYS_PARAM_H
+#if __has_include(<sys/param.h>)
# include <sys/param.h>
#endif