summaryrefslogtreecommitdiffstats
path: root/src/config.h
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2024-01-02 19:31:48 -0500
committerTavian Barnes <tavianator@tavianator.com>2024-01-02 19:33:11 -0500
commitf0d4c378f07195c2313b20c6b7072c1735359814 (patch)
tree42e37328ec140baca1dde9db3ddb9b41d69c1a61 /src/config.h
parent683f2c41c72efcb82ce866e3dcc311ac9bd8b66d (diff)
downloadbfs-f0d4c378f07195c2313b20c6b7072c1735359814.tar.xz
config: Don't use target_clones on NetBSD
Diffstat (limited to 'src/config.h')
-rw-r--r--src/config.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config.h b/src/config.h
index 91cef71..7080fb6 100644
--- a/src/config.h
+++ b/src/config.h
@@ -287,7 +287,7 @@ typedef long double max_align_t;
* Check if function multiversioning via GNU indirect functions (ifunc) is supported.
*/
#ifndef BFS_USE_TARGET_CLONES
-# if __has_attribute(target_clones) && (__GLIBC__ || __FreeBSD__ || __NetBSD__)
+# if __has_attribute(target_clones) && (__GLIBC__ || __FreeBSD__)
# define BFS_USE_TARGET_CLONES true
# endif
#endif