summaryrefslogtreecommitdiffstats
path: root/src/util.h
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2022-11-06 10:40:33 -0500
committerTavian Barnes <tavianator@tavianator.com>2022-11-06 16:37:14 -0500
commit9f6f391358e3d8f66ebd750250479bebebe4d0d4 (patch)
treeb954d8cdb10e46ff68a39b6c829ab94161994f2a /src/util.h
parent2724dfbd17552f892a0d8b39b96cbe9e49d66fdb (diff)
downloadbfs-9f6f391358e3d8f66ebd750250479bebebe4d0d4.tar.xz
util: Use fewer BFS_*() wrappers for feature testing
Diffstat (limited to 'src/util.h')
-rw-r--r--src/util.h36
1 files changed, 14 insertions, 22 deletions
diff --git a/src/util.h b/src/util.h
index ac08e4d..ffa5bcc 100644
--- a/src/util.h
+++ b/src/util.h
@@ -30,28 +30,22 @@
// Some portability concerns
-#ifdef __has_feature
-# define BFS_HAS_FEATURE(feature, fallback) __has_feature(feature)
-#else
-# define BFS_HAS_FEATURE(feature, fallback) fallback
+#ifndef __has_feature
+# define __has_feature(feat) false
#endif
-#ifdef __has_include
-# define BFS_HAS_INCLUDE(header, fallback) __has_include(header)
-#else
-# define BFS_HAS_INCLUDE(header, fallback) fallback
+#ifndef __has_c_attribute
+# define __has_c_attribute(attr) false
#endif
-#ifdef __has_c_attribute
-# define BFS_HAS_C_ATTRIBUTE(attr) __has_c_attribute(attr)
-#else
-# define BFS_HAS_C_ATTRIBUTE(attr) false
+#ifndef __has_attribute
+# define __has_attribute(attr) false
#endif
-#if __GNUC__ && defined(__has_attribute)
-# define BFS_HAS_GNU_ATTRIBUTE(attr) __has_attribute(attr)
+#ifdef __has_include
+# define BFS_HAS_INCLUDE(header, fallback) __has_include(header)
#else
-# define BFS_HAS_GNU_ATTRIBUTE(attr) false
+# define BFS_HAS_INCLUDE(header, fallback) fallback
#endif
#ifndef BFS_HAS_MNTENT
@@ -94,10 +88,8 @@
# define BFS_HAS_UTIL BFS_HAS_INCLUDE(<util.h>, __NetBSD__)
#endif
-#ifdef __GLIBC_PREREQ
-# define BFS_GLIBC_PREREQ(maj, min) __GLIBC_PREREQ(maj, min)
-#else
-# define BFS_GLIBC_PREREQ(maj, min) false
+#ifndef __GLIBC_PREREQ
+# define __GLIBC_PREREQ(maj, min) false
#endif
#if !defined(FNM_CASEFOLD) && defined(FNM_IGNORECASE)
@@ -108,9 +100,9 @@
# define O_DIRECTORY 0
#endif
-#if BFS_HAS_C_ATTRIBUTE(fallthrough)
+#if __has_c_attribute(fallthrough)
# define BFS_FALLTHROUGH [[fallthrough]]
-#elif BFS_HAS_GNU_ATTRIBUTE(fallthrough)
+#elif __has_attribute(fallthrough)
# define BFS_FALLTHROUGH __attribute__((fallthrough))
#else
# define BFS_FALLTHROUGH ((void)0)
@@ -119,7 +111,7 @@
/**
* Adds compiler warnings for bad printf()-style function calls, if supported.
*/
-#if BFS_HAS_GNU_ATTRIBUTE(format)
+#if __has_attribute(format)
# define BFS_FORMATTER(fmt, args) __attribute__((format(printf, fmt, args)))
#else
# define BFS_FORMATTER(fmt, args)