aboutsummaryrefslogtreecommitdiffstats
path: root/libc/include/strings.h
diff options
context:
space:
mode:
Diffstat (limited to 'libc/include/strings.h')
-rw-r--r--libc/include/strings.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/include/strings.h b/libc/include/strings.h
index faa12a47c..e72798b66 100644
--- a/libc/include/strings.h
+++ b/libc/include/strings.h
@@ -50,12 +50,12 @@ char *index(const char *, int);
int strcasecmp(const char *, const char *);
int strncasecmp(const char *, const char *, size_t);
-#if defined(__BIONIC_FORTIFY) && !defined(__clang__)
+#if defined(__BIONIC_FORTIFY)
__BIONIC_FORTIFY_INLINE
void bzero (void *s, size_t n) {
__builtin___memset_chk(s, '\0', n, __builtin_object_size (s, 0));
}
-#endif /* defined(__BIONIC_FORTIFY) && !defined(__clang__) */
+#endif /* defined(__BIONIC_FORTIFY) */
__END_DECLS