summaryrefslogtreecommitdiffstats
path: root/src/bfs.h
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2024-10-08 10:58:22 -0400
committerTavian Barnes <tavianator@tavianator.com>2024-10-10 11:18:06 -0400
commit271f6f44ea645c74f3130f03311b65e5dbdc7139 (patch)
tree6a1085d9946188f0b01e8f67333360c92a013d1b /src/bfs.h
parent7122b28296f13d0a3401e79691d6f653153b79b5 (diff)
downloadbfs-271f6f44ea645c74f3130f03311b65e5dbdc7139.tar.xz
Fix some -Wundef-prefix warnings
Diffstat (limited to 'src/bfs.h')
-rw-r--r--src/bfs.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/bfs.h b/src/bfs.h
index ad6a628..af4cf9f 100644
--- a/src/bfs.h
+++ b/src/bfs.h
@@ -204,6 +204,8 @@ extern const char bfs_ldlibs[];
#ifndef BFS_USE_TARGET_CLONES
# if __has_attribute(target_clones) && (__GLIBC__ || __FreeBSD__) && !__SANITIZE_THREAD__
# define BFS_USE_TARGET_CLONES true
+# else
+# define BFS_USE_TARGET_CLONES false
# endif
#endif