diff options
Diffstat (limited to 'libc/include/string.h')
-rw-r--r-- | libc/include/string.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libc/include/string.h b/libc/include/string.h index d1dc4c41b..06e22841b 100644 --- a/libc/include/string.h +++ b/libc/include/string.h @@ -147,7 +147,6 @@ void *memset (void *s, int c, size_t n) { return __builtin___memset_chk(s, c, n, __builtin_object_size (s, 0)); } -#if !defined(__clang__) extern size_t __strlcpy_real(char *, const char *, size_t) __asm__(__USER_LABEL_PREFIX__ "strlcpy"); extern void __strlcpy_error() @@ -224,8 +223,6 @@ size_t strlen(const char *s) { return __strlen_chk(s, bos); } -#endif /* !defined(__clang__) */ - #endif /* defined(__BIONIC_FORTIFY_INLINE) */ |